selenium面試題總結

今天有同窗問到seleinum面試的時候會問到的問題,隨便想了想,暫時紀錄一下。歡迎你們在評論中提供更多問題。javascript

 

1.selenium中如何判斷元素是否存在?css

selenium中沒有提供原生的方法判斷元素是否存在,通常咱們能夠經過定位元素+異常捕獲的方式判斷。java

```python

# 判斷元素是否存在try:程序員

    dr.find_element_by_id('none')except NoSuchElementException:web

    print 'element does not exist'面試

```sql

 

2.selenium中hidden或者是display = none的元素是否能夠定位到?chrome

不能夠,selenium不能定位不可見的元素。display=none的元素其實是不可見元素。數據庫

3.selenium中如何保證操做元素的成功率?也就是說如何保證我點擊的元素必定是能夠點擊的?

被點擊的元素必定要佔必定的空間,由於selenium默認會去點這個元素的中心點,不佔空間的元素算不出來中心點;

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

被點擊的元素不能在viewport以外,也就是說若是元素必須是可見的或者經過滾動條操做使得元素可見;

使用element.is_enabled()(python代碼)判斷元素是不是能夠被點擊的,若是返回false證實元素可能灰化了,這時候就不能點;

4.如何提升selenium腳本的執行速度?

使用效率更高的語言,好比java執行速度就快過python

不要盲目的加sleep,儘可能使用顯示等待

對於firefox,考慮使用測試專用的profile,由於每次啓動瀏覽器的時候firefox會建立1個新的profile,對於這個新的profile,全部的靜態資源都是從服務器直接下載,而不是從緩存里加載,這就致使網絡很差的時候用例運行速度特別慢的問題

chrome瀏覽器和safari瀏覽器的執行速度看上去是最快的

能夠考慮分佈式執行或者使用selenium grid

5.用例在運行過程當中常常會出現不穩定的狀況,也就是說此次能夠經過,下次就沒辦法經過了,如何去提高用例的穩定性?

測試專屬profile,儘可能讓靜態資源緩存

儘可能使用顯示等待

儘可能使用測試專用環境,避免其餘類型的測試同時進行,對數據形成干擾

 

6.你的自動化用例的執行策略是什麼?

每日執行:好比天天晚上在主幹執行一次

週期執行:每隔2小時在開發分之執行一次

動態執行:每次代碼有提交就執行

7.什麼是持續集成?

能夠自行百度,學習能力自我提高很重要(1079636098)軟件測試技術交流羣推薦。

8.自動化測試的時候是否是須要鏈接數據庫作數據校驗?

通常不須要,由於這是單元測試層作的事情,在自動化測試層儘可能不要爲單元測試層沒作的工做還債。

9.id,name,clas,x path, css selector這些屬性,你最偏心哪種,爲何?

xpath和css最爲靈活,因此其餘的答案都不夠完美。

10如何去定位頁面上動態加載的元素?

顯示等待

11.如何去定位屬性動態變化的元素?

找出屬性動態變化的規律,而後根據上下文生成動態屬性。

12.點擊連接之後,selenium是否會自動等待該頁面加載完畢?

java binding在點擊連接後會自動等待頁面加載完畢。

13.webdriver client的原理是什麼?

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

瀏覽器

driver: 通常咱們都會下載driver

client: 也就是咱們寫的代碼

client其實並不知道瀏覽器是怎麼工做的,可是driver知道,在selenium啓動之後,driver其實充當了服務器的角色,跟client和瀏覽器通訊,client根據webdriver協議發送請求給driver,driver解析請求,並在瀏覽器上執行相應的操做,並把執行結果返回給client。這就是selenium工做的大體原理。

14.webdriver的協議是什麼?

client與driver之間的約定,不管client是使用java實現仍是c#實現,只要經過這個約定,client就能夠準確的告訴drier它要作什麼以及怎麼作。

webdriver協議自己是http協議,數據傳輸使用json。

這裏有webdriver協議的全部endpoint,稍微看一眼就知道這些endpoints涵蓋了selenium的全部功能。

15.啓動瀏覽器的時候用到的是哪一個webdriver協議?

New Session,若是建立成功,返回sessionId和capabilities。

16.什麼是page object設計模式?

簡單來講就是用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設計模式?

其實是官方給出的java page object的工廠模式實現。

18.怎樣去選擇一個下拉框中的value=xx的option?

使用select類,具體能夠加羣瞭解

19.如何在定位元素後高亮元素(以調試爲目的)?

使用javascript將元素的border或者背景改爲黃色就能夠了。

20.什麼是斷言?

能夠簡單理解爲檢查點,就是預期和實際的比較

若是預期等於實際,斷言經過,測試報告上記錄pass

若是預期不等於實際,斷言失敗,測試報告上記錄fail

21.若是你進行自動化測試方案的選型,你會選擇哪一種語言,java,js,python仍是ruby?

哪一個熟悉用哪一個

若是都不會,團隊用哪一種語言就用那種

22.page object設置模式中,是否須要在page裏定位的方法中加上斷言?

通常不要,除非是要判斷頁面是否正確加載。

Generally don't make assertions

23.page object設計模式中,如何實現頁面的跳轉?

返回另外一個頁面的實例能夠表明頁面跳轉。

```

// 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.自動化測試用例從哪裏來?

手工用例的子集,儘可能

簡單並且須要反覆迴歸

穩定,也就是不要常常變來變去

核心,優先覆蓋核心功能

25.你以爲自動化測試最大的缺陷是什麼?

實現成本高

運行速度較慢

須要必定的代碼能力才能及時維護

26.什麼是分層測試?

畫給他/她看。

27.webdriver能夠用來作接口測試嗎?

不用糾結,不能夠。

28.selenium 是否能夠調用js來對dom對象進行操做?

Could selenium call js for implementation dom object directly?

29.selenium 是否能夠向頁面發送鼠標滾輪操做?

Could selenium send the action of mouse scroll wheel?

不能

30selenium 是否能夠模擬拖拽操做?

Does selenium support drag and drop action?

能夠

31.selenium 對下拉列表的中的選項進行選擇操做時,須要被操做對象的標籤是什麼?

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


最後:

歡迎關注公衆號:程序員一凡,領取一份216頁pdf文檔的Python自動化測試工程師核心知識點總結!

這些資料的內容都是面試時面試官必問的知識點,篇章包括了不少知識點,其中包括了有基礎知識、Linux必備、Shell、互聯網程序原理、Mysql數據庫、抓包工具專題、接口測試工具、測試進階-Python編程、Web自動化測試、APP自動化測試、接口自動化測試、測試高級持續集成、測試架構開發測試框架、性能測試、安全測試等。

相關文章
相關標籤/搜索