32道 Selenium 軟件測試面試問題

Time will tell.

今天有同學(xué)問到面試 Seleinum 的時候會問到哪些問題候学,于是想了想,暫時紀(jì)錄下來了這么多翅雏,然后歡迎大家在評論區(qū)提供更多問題圈驼。

1、selenium 中如何判斷元素是否存在望几?

selenium中沒有提供原生的方法判斷元素是否存在绩脆,一般我們可以通過定位元素+異常捕獲的方式判斷。

# 判斷元素是否存在try:

    dr.find_element_by_id('none')except NoSuchElementException:

    print 'element does not exist'

2橄抹、selenium 中 hidden 或者是 display = none 的元素是否可以定位到衙伶?

不可以,selenium 不能定位不可見的元素害碾。display=none 的元素實際上是不可見元素矢劲。

3、selenium 中如何保證操作元素的成功率慌随?也就是說如何保證我點擊的元素一定是可以點擊的芬沉?

被點擊的元素一定要占一定的空間,因為 selenium 默認(rèn)會去點這個元素的中心點阁猜,不占空間的元素算不出來中心點丸逸;

被點擊的元素不能被其他元素遮擋;

被點擊的元素不能在viewport之外剃袍,也就是說如果元素必須是可見的或者通過滾動條操作使得元素可見黄刚;

使用element.is_enabled()(python代碼)判斷元素是否是可以被點擊的,如果返回false證明元素可能灰化了民效,這時候就不能點憔维。

4、如何提高 selenium 腳本的執(zhí)行速度畏邢?

使用效率更高的語言业扒,比如 java 執(zhí)行速度就快過 python ;

不要盲目的加 sleep舒萎,盡量使用顯示等待程储;

對于firefox,考慮使用測試專用的profile臂寝,因為每次啟動瀏覽器的時候firefox會創(chuàng)建1個新的profile章鲤,對于這個新的profile,所有的靜態(tài)資源都是從服務(wù)器直接下載咆贬,而不是從緩存里加載败徊,這就導(dǎo)致網(wǎng)絡(luò)不好的時候用例運行速度特別慢的問題;

chrome瀏覽器和safari瀏覽器的執(zhí)行速度看上去是最快的素征;

可以考慮分布式執(zhí)行或者使用selenium grid集嵌。

5萝挤、用例在運行過程中經(jīng)常會出現(xiàn)不穩(wěn)定的情況,就是說這次可以通過根欧,下次就沒辦法通過怜珍,如何去提升用例的穩(wěn)定性?

測試專屬profile凤粗,盡量讓靜態(tài)資源緩存酥泛;

盡量使用顯示等待;

盡量使用測試專用環(huán)境嫌拣,避免其他類型的測試同時進行柔袁,對數(shù)據(jù)造成干擾。

6异逐、你的自動化用例的執(zhí)行策略是什么捶索?

每日執(zhí)行:比如每天晚上在主干執(zhí)行一次;

周期執(zhí)行:每隔2小時在開發(fā)分之執(zhí)行一次灰瞻;

動態(tài)執(zhí)行:每次代碼有提交就執(zhí)行腥例。

7、什么是持續(xù)集成酝润?

可以自行百度燎竖,學(xué)習(xí)能力自我提升很重要(175317069)軟件測試技術(shù)交流群推薦。

8要销、自動化測試的時候是不是需要連接數(shù)據(jù)庫做數(shù)據(jù)校驗构回?

一般不需要,因為這是單元測試層做的事情疏咐,在自動化測試層盡量不要為單元測試層沒做的工作還債纤掸。

9、id,name,clas,x path, css selector這些屬性凳鬓,你最偏愛哪一種茁肠,為什么?

xpath和css最為靈活缩举,所以其他的答案都不夠完美。

10匹颤、如何去定位頁面上動態(tài)加載的元素仅孩?

顯示等待。

11印蓖、如何去定位屬性動態(tài)變化的元素辽慕?

找出屬性動態(tài)變化的規(guī)律,然后根據(jù)上下文生成動態(tài)屬性赦肃。

12溅蛉、點擊鏈接以后公浪,selenium是否會自動等待該頁面加載完畢?

java binding在點擊鏈接后會自動等待頁面加載完畢船侧。

13欠气、webdriver client的原理是什么?

selenium的原理涉及到3個部分镜撩,分別是:

瀏覽器

driver: 一般我們都會下載driver

client: 也就是我們寫的代碼

client其實并不知道瀏覽器是怎么工作的预柒,但是driver知道,在selenium啟動以后袁梗,driver其實充當(dāng)了服務(wù)器的角色宜鸯,跟client和瀏覽器通信,client根據(jù)webdriver協(xié)議發(fā)送請求給driver遮怜,driver解析請求淋袖,并在瀏覽器上執(zhí)行相應(yīng)的操作,并把執(zhí)行結(jié)果返回給client锯梁。這就是selenium工作的大致原理即碗。

14、webdriver的協(xié)議是什么涝桅?

client與driver之間的約定拜姿,無論client是使用java實現(xiàn)還是c#實現(xiàn),只要通過這個約定冯遂,client就可以準(zhǔn)確的告訴drier它要做什么以及怎么做蕊肥。

webdriver協(xié)議本身是http協(xié)議,數(shù)據(jù)傳輸使用json蛤肌。

這里有webdriver協(xié)議的所有endpoint壁却,稍微看一眼就知道這些endpoints涵蓋了selenium的所有功能。

15裸准、啟動瀏覽器的時候用到的是哪個webdriver協(xié)議展东?

New Session,如果創(chuàng)建成功炒俱,返回sessionId和capabilities盐肃。

16、什么是page object設(shè)計模式权悟?

簡單來說就是用class去表示被測頁面砸王。在class中定義頁面上的元素和一些該頁面上專屬的方法。

例子:


public class LoginPage { private final WebDriver driver; public LoginPage(WebDriver driver) { this.driver = driver; // Check that we're on the right page. if (!"Login".equals(driver.getTitle())) { // Alternatively, we could navigate to the login page, perhaps logging out first throw new IllegalStateException("This is not the login page"); } } // The login page contains several HTML elements that will be represented as WebElements. // The locators for these elements should only be defined once. By usernameLocator = By.id("username"); By passwordLocator = By.id("passwd"); By loginButtonLocator = By.id("login"); // The login page allows the user to type their username into the username field public LoginPage typeUsername(String username) { // This is the only place that "knows" how to enter a username driver.findElement(usernameLocator).sendKeys(username); // Return the current page object as this action doesn't navigate to a page represented by another PageObject return this; } // The login page allows the user to type their password into the password field public LoginPage typePassword(String password) { // This is the only place that "knows" how to enter a password driver.findElement(passwordLocator).sendKeys(password); // Return the current page object as this action doesn't navigate to a page represented by another PageObject return this; } // The login page allows the user to submit the login form public HomePage submitLogin() { // This is the only place that submits the login form and expects the destination to be the home page. // A seperate method should be created for the instance of clicking login whilst expecting a login failure. driver.findElement(loginButtonLocator).submit(); // Return a new page object representing the destination. Should the login page ever // go somewhere else (for example, a legal disclaimer) then changing the method signature // for this method will mean that all tests that rely on this behaviour won't compile. return new HomePage(driver); } // The login page allows the user to submit the login form knowing that an invalid username and / or password were entered public LoginPage submitLoginExpectingFailure() { // This is the only place that submits the login form and expects the destination to be the login page due to login failure. driver.findElement(loginButtonLocator).submit(); // Return a new page object representing the destination. Should the user ever be navigated to the home page after submiting a login with credentials // expected to fail login, the script will fail when it attempts to instantiate the LoginPage PageObject. return new LoginPage(driver); } // Conceptually, the login page offers the user the service of being able to "log into" // the application using a user name and password. public HomePage loginAs(String username, String password) { // The PageObject methods that enter username, password & submit login have already defined and should not be repeated here. typeUsername(username); typePassword(password); return submitLogin(); } }

17峦阁、什么是page factory設(shè)計模式谦铃?

實際上是官方給出的java page object的工廠模式實現(xiàn)。

18榔昔、怎樣去選擇一個下拉框中的value=xx的option驹闰?

使用select類瘪菌,具體可以加群了解

19、如何在定位元素后高亮元素(以調(diào)試為目的)嘹朗?

使用javascript將元素的border或者背景改成黃色就可以了师妙。

20、什么是斷言骡显?

可以簡單理解為檢查點疆栏,就是預(yù)期和實際的比較

如果預(yù)期等于實際,斷言通過惫谤,測試報告上記錄pass

如果預(yù)期不等于實際壁顶,斷言失敗,測試報告上記錄fail

21溜歪、如果你進行自動化測試方案的選型若专,你會選擇哪種語言,java蝴猪,js调衰,python還是ruby?

哪個熟悉用哪個

如果都不會自阱,團隊用哪種語言就用那種

22嚎莉、page object設(shè)置模式中,是否需要在page里定位的方法中加上斷言沛豌?

一般不要趋箩,除非是要判斷頁面是否正確加載。

Generally don’t make assertions

23加派、page object設(shè)計模式中叫确,如何實現(xiàn)頁面的跳轉(zhuǎn)?

返回另一個頁面的實例可以代表頁面跳轉(zhuǎn)芍锦。


// The login page allows the user to submit the login form public HomePage submitLogin() { // This is the only place that submits the login form and expects the destination to be the home page. // A seperate method should be created for the instance of clicking login whilst expecting a login failure. driver.findElement(loginButtonLocator).submit(); // Return a new page object representing the destination. Should the login page ever // go somewhere else (for example, a legal disclaimer) then changing the method signature // for this method will mean that all tests that rely on this behaviour won't compile. return new HomePage(driver); }

24竹勉、自動化測試用例從哪里來?

手工用例的子集娄琉,盡量

簡單而且需要反復(fù)回歸

穩(wěn)定次乓,也就是不要經(jīng)常變來變?nèi)?/p>

核心,優(yōu)先覆蓋核心功能

25孽水、你覺得自動化測試最大的缺陷是什么檬输?

實現(xiàn)成本高

運行速度較慢

需要一定的代碼能力才能及時維護

26、什么是分層測試匈棘?

畫給他/她看。

27析命、webdriver可以用來做接口測試嗎主卫?

不用糾結(jié)逃默,不可以。

28簇搅、elenium 是否可以調(diào)用js來對dom對象進行操作完域?

Could selenium call js for implementation dom object directly?

是。

29瘩将、selenium 是否可以向頁面發(fā)送鼠標(biāo)滾輪操作吟税?

Could selenium send the action of mouse scroll wheel?

不能。

30姿现、selenium 是否可以模擬拖拽操作肠仪?

Does selenium support drag and drop action?

可以。

31备典、selenium 對下拉列表的中的選項進行選擇操作時异旧,需要被操作對象的標(biāo)簽是什么?

When Selenium selects the option in selenium, What tag the DOM object should be?

select提佣。

32吮蛹、selenium 上傳文件操作,需要被操作對象的type屬性是什么拌屏?

When Selenium upload a file, what value of type of the DOM object should be?

file潮针。


對Python自動化軟件測試感興趣可以加入我們扣裙一起學(xué)習(xí)175317069。有測試學(xué)習(xí)資源倚喂,行業(yè)技術(shù)人分析講解每篷。

看個簽,有不定期自動化軟件測試書籍抽獎福利务唐。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末雳攘,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子枫笛,更是在濱河造成了極大的恐慌吨灭,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,454評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件刑巧,死亡現(xiàn)場離奇詭異喧兄,居然都是意外死亡,警方通過查閱死者的電腦和手機啊楚,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評論 3 385
  • 文/潘曉璐 我一進店門吠冤,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人恭理,你說我怎么就攤上這事拯辙。” “怎么了?”我有些...
    開封第一講書人閱讀 157,921評論 0 348
  • 文/不壞的土叔 我叫張陵涯保,是天一觀的道長诉濒。 經(jīng)常有香客問我,道長夕春,這世上最難降的妖魔是什么未荒? 我笑而不...
    開封第一講書人閱讀 56,648評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮及志,結(jié)果婚禮上片排,老公的妹妹穿的比我還像新娘。我一直安慰自己速侈,他們只是感情好率寡,可當(dāng)我...
    茶點故事閱讀 65,770評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著锌畸,像睡著了一般勇劣。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上潭枣,一...
    開封第一講書人閱讀 49,950評論 1 291
  • 那天比默,我揣著相機與錄音,去河邊找鬼盆犁。 笑死命咐,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的谐岁。 我是一名探鬼主播醋奠,決...
    沈念sama閱讀 39,090評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼伊佃!你這毒婦竟也來了窜司?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,817評論 0 268
  • 序言:老撾萬榮一對情侶失蹤航揉,失蹤者是張志新(化名)和其女友劉穎塞祈,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體帅涂,經(jīng)...
    沈念sama閱讀 44,275評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡议薪,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,592評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了媳友。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片斯议。...
    茶點故事閱讀 38,724評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖醇锚,靈堂內(nèi)的尸體忽然破棺而出哼御,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 34,409評論 4 333
  • 正文 年R本政府宣布艇搀,位于F島的核電站尿扯,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏焰雕。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 40,052評論 3 316
  • 文/蒙蒙 一芳杏、第九天 我趴在偏房一處隱蔽的房頂上張望矩屁。 院中可真熱鬧,春花似錦爵赵、人聲如沸吝秕。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,815評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽烁峭。三九已至,卻和暖如春秕铛,著一層夾襖步出監(jiān)牢的瞬間约郁,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,043評論 1 266
  • 我被黑心中介騙來泰國打工但两, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留鬓梅,地道東北人。 一個月前我還...
    沈念sama閱讀 46,503評論 2 361
  • 正文 我出身青樓谨湘,卻偏偏與公主長得像绽快,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子紧阔,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,627評論 2 350

推薦閱讀更多精彩內(nèi)容