Web自動化測試:xpath & CSS Selector定位
元素。 | | Xpath可以定位當前節點前面的鄰居節點,CSS Selector不能 ```python //*element/preceding-sibling::element ``` ## 父元素、祖先元素定位 CSS Selector是前向的,不能利用子節點定位父節點 | 方法 | 描述 | | -------- | ------------------------------------------------------------ | | .. | 一個點”.“表示選取當前節點,兩個點”..“表示選取當前節點的父節點。 | | ancestor | 當前節點祖先元素(父、祖父...) | | parent | 當前節點的父節點 | ## Id定位 | | **Xpath** | **CSS Selector** | | -------- | --------------------------- | ---------------- | | **語法** | //*\*[@id='example']* | *#example* | | **示例** | //*\*[@id='uesrname']* | #*uesrname* | | **描述** | 選擇*id='uesrname'的*元素。 | | ## Class定位 | | **Xpath** | **CSS Selector** | | -------- | ------------------------------ | ---------------- | | **語法** | //*\*[@class='example']* | *.example* | | **示例** | //*\*[@class='uesrname']* | .*uesrname* | | **描述** | 選擇*class='uesrname'的*元素。 | | ## 屬性值定位 沒有Id和Class的情況下,可以使用其它屬性值定位,比如name、type等。 | | **Xpath** | **CSS Selector** | | -------- | ----------------------------------- | ----------------- | | **語法** | //*\*[@attribute='value']* | [attribute=value] | | **示例** | //*\*[@name='uesrname']* | [name='username'] | | **描述** | 選擇屬性值*name='uesrname'的*元素。 | | xpath可以使用 ‘and’ 或者 ‘or’ 連線兩個屬性: XPATH: ```python //input[@name='login'and @type='submit'] ``` CSS Selector: ```python input[name='login'][type='submit'] ``` CSS Selector可以進行子字串匹配進行定位: ^= 匹配字首 ```python [id^='id_prefix_'] # id字首為‘id_prefix_’的元素 ``` $= 匹配字尾 ```python [id$='_id_sufix'] # id字尾為‘_id_sufix’的元素 ``` *= 包含某個字串 ```python [id*='id_pattern'] # id包含‘id_pattern’的元素 ``` ## Xpath Contains()方法 Contains()方法也許通過部分文字來定位查詢元素,CSS Selector不支援這種用法。 ```python Xpath = //*[contains(@type,'partial_text')] Xpath = //*[contains(@name,'partial_text')] Xpath = //*[contains(@class,'partial_text')] Xpath = //*[contains(@id,'partial_text')] Xpath = //*[contains(text(),'partial_text')] Xpath = //*[contains(@href,'partial_text')] ``` ## Xpath Starts-with()方法 查詢屬性值以特定文字開始的元素 ```python Xpath = //*[starts-with(@type,'start_text')] Xpath = //*[starts-with(@name,'start_text')] Xpath = //*[starts-with(@class,'start_text')] Xpath = //*[starts-with(@id,'start_text')] Xpath = //*[starts-with(text(),'start_text')] Xpath = //*[starts-with(@href,'start_text')] ``` ## Xpath Text()方法 Text()方法基於web元素文字來進行定位 ```python Xpath = //*[text()='text_value'] ``` # 例項 ## 子孫元素定位 百度一下”text“,點選”**資訊**“ ![](https://img2020.cnblogs.com/blog/2229336/202012/2229336-20201220124710113-1738958574.png) Xpath: ```python //*[@id="s_tab"]/descendant::a[1] //*[@id="s_tab"]/child::*[1]/a[1] ``` CSS selector: ```python #s_tab a:nth-child(2) #s_tab a:nth-last-child(9) ``` python測試程式碼: ```python def test_css(self): self.driver.get("https://www.baidu.com/") self.driver.find_element_by_id("kw").send_keys("test") self.driver.find_element_by_id("su").click() # element = self.driver.find_element_by_css_selector("#s_tab a:nth-child(2)") # element = self.driver.find_element_by_css_selector('#s_tab a:nth-last-child(9)') element = self.driver.find_element_by_xpath('//*[@id="s_tab"]/descendant::a[1]') element.click() sleep(2) ``` ## 鄰居節點定位 點選”**資訊**“下一個鄰居節點”**視訊**“ xpath ```python //*[@id="s_tab"]/descendant::a[1]/following-sibling::a[1] //*[@id="s_tab"]/child::*[1]/a[1]/following-sibling::a[1] ``` CSS selector: ```python #s_tab a:nth-child(2) + a #s_tab a:nth-last-child(9) + a ``` python測試程式碼: ```python def test_css2(self): self.driver.get("https://www.baidu.com/") self.driver.find_element_by_id("kw").send_keys("test") self.driver.find_element_by_id("su").click() # element = self.driver.find_element_by_css_selector('#s_tab a:nth-child(2) + a') element = self.driver.find_element_by_xpath('//*@id="s_tab"]/descendant::a[1]/following-sibling::a[1]') element.click() sleep(2) ``` ## Xpath Contains()、Starts-with()、Text()定位 測試頁面:http://sahitest.com/demo/linkTest.htm 點選”[linkByContent](http://sahitest.com/demo/linkByContent.htm)“ ![](https://img2020.cnblogs.com/blog/2229336/202012/2229336-20201220124726150-1410131405.png) xpath語法: ```python //*[contains(@href,"Content")] //*[starts-with(@href,"linkByC")] //*[contains(text(),"Content")] //*[text()="linkByContent"] ``` python測試程式碼: ```python def test_css2(self): self.driver.get("http://sahitest.com/demo/linkTest.htm") # element = self.driver.find_element_by_xpath('//*[contains(@href,"Content")]') # element = self.driver.find_element_by_xpath('//*[starts-with(@href,"linkByC")]') # element = self.driver.find_element_by_xpath('//*[contains(text(),"Content")]') element = self.driver.find_element_by_xpath('//*[text()="linkByContent"]') element.click() ``` # 總結 Xpath幾乎可以定位到所以Web元素,CSS Selector效率更高,且程式碼簡潔,但有些元素可能無法定位,特別是需要通過子元素來定位的父元素,或者需要通過文字定位的元素。 在實際使用中,按照自己的實際情況來選擇即可,CSS Selector理論上執行效率更高,但他們的效能差異不是很大,在幾毫秒或者幾十毫秒級別。這兩種定位方法除了本文介紹的以外,還有更多其它高階語法,可以參考官方文件。