id, name, class name, tag name,css
link text, partial link text, xpath, css selectorhtml
下面主要介紹一下xpath:函數
1、xpath基本定位用法3d
1.1 使用id定位 -- driver.find_element_by_xpath('//input[@id="kw"]')code
1.2 使用class定位 -- driver.find_element_by_xpath('//input[@class="s_ipt"]')orm
1.3 固然 經過經常使用的8種方式結合xpath都可以定位(name、tag_name、link_text、partial_link_text)以上只列舉了2種經常使用方式哦。htm
2、xpath相對路徑/絕對路徑定位blog
2.1 相對定位 -- 以// 開頭 如://form//input[@name="phone"]ip
2.2 絕對定位 -- 以/ 開頭,可是要從根目錄開始,比較繁瑣,通常不建議使用 如:/html/body/div/aci
3、xpath文本、模糊、邏輯定位
3.1【文本定位】使用text()元素的text內容 如://button[text()="登陸"]
3.2 【模糊定位】使用contains() 包含函數 如://button[contains(text(),"登陸")]、//button[contains(@class,"btn")] 除了contains不是=等於
3.3 【模糊定位】使用starts-with -- 匹配以xx開頭的屬性值;ends-with -- 匹配以xx結尾的屬性值 如://button[starts-with(@class,"btn")]、//input[ends-with(@class,"-special")]
3.4 使用邏輯運算符 -- and、or;如://input[@name="phone" and @datatype="m"]
4、xpath軸定位
4.1 軸運算
注意:
#定位 找到元素 -- 作到惟一識別#優先使用id#捨棄:有下標的出現、有絕對定位的出現、id動態變化時捨棄其它文章:https://www.cnblogs.com/hanmk/p/8997786.html https://www.cnblogs.com/hanmk/p/9015502.html