selenium + Python -- xpath定位
阿新 • • 發佈:2018-12-04
1. xpath屬性定位
xpath可以通過元素的id, name, class這些屬性定位,如下:
driver.find_element_by_xpath("//*[@id='kw']").send_keys("by_xpath")
driver.find_element_by_xpath("//*[@name='wd']").send_keys("by_xpath")
driver.find_element_by_xpath("//*[@class='s_ipt']").send_keys("by_xpath")
2. xpath其他屬性定位
driver.find_element_by_xpath("//*[@autocomplete='off']").send_keys("by_xpath")
3. xpath標籤
同一個屬性同名較多的時候,可以指定標籤,定位更準,如下:
driver.find_element_by_xpath("//input[@id='kw']").send_keys("by_xpath")
4. xpath層級
如果一個元素的屬性不是很明顯,可以通過父元素來找它,如果父元素的屬性也不是很明顯,就通過父元素的父元素,即爺爺元素來找,如下
# 通過父元素定位 driver.find_element_by_xpath("//span[@id='s_kw_wrap']/input").send_keys("by_xpath") #通過爺爺元素定位 driver.find_element_by_xpath("//form[@id='form']/span/input").send_keys("by_xpath")
5. xpath索引
如果一個元素它的兄弟元素跟它標籤一樣,這時候無法通過層級定位,可以通過索引定位,如下:
driver.find_element_by_xpath("//select[@id='nr']/option[1]").click()
driver.find_element_by_xpath("//select[@id='nr']/option[2]").click()
driver.find_element_by_xpath("//select[@id='nr']/option[3]").click()
這裡索引是從1開始的,跟python的索引不一樣。
6. xpath邏輯運算
xpath支援與(and)、或(or)、非(not),如下:
driver.find_element_by_xpath("//*[@id='kw' and @autocomplete='off']").send_keys("by_xpath")
7. xpath模糊匹配
# 匹配文字
driver.find_element_by_xpath("//*[contains(text(), 'hao123')]").click()
# 匹配屬性
driver.find_element_by_xpath("//*[contains(@id, 'kw')]").click()
# 匹配以什麼開頭
driver.find_element_by_xpath("//*[starts-with(@id, 's_kw_')]").click()
# 匹配以什麼結尾
driver.find_element_by_xpath("//*[ends-with(@id, 'kw_wrap')]").click()