关于Xpath定位方法
作者:互联网
1、通过绝对路径方式定位
/html/body/div[1]/div[2]/div[5]/div[1]/div/form/span[1]/input
/html/body/div[1]/div[1]/div[5]/div/div/form/span[1]
/html//input[@id='su']
/html//input[@id='kw']
2、通过相对路径方式定位
//input
//input[#'su']
//input[#'kw']
//*[@id="hotsearch-content-wrapper"]
3、通过元素索引定位
//*[@id="hotsearch-content-wrapper"]/li[2]
4、通过属性定位
使用xpath属性定位(结合第2、第3中方法可以使用)
//input[@id='kw']
//input[@type='name' and @name='kw']
//*[@class="bg s_ipt_wr new-pmd quickdelete-wrap"]
5、通过部分属性值匹配
//input[starts-with(@id,'k')]
//input[ends-with(@id,'w')]
//input[contains(@id,'w')]
//*[contains(text(),"神十四航天员名单合影公布")]
//*[contains(@class,"s-top-wrap")]
//*[contains(text(),"神十四航天员名单合影公布") and contains(@class,"title-content-title")]
6、通过文本定位
//a[text()='直播']
///span[@innertext='中国首位飞天女航天员再登太空']
///span[@innertext='D2809次列车司机曾5秒内紧急制动']
//div[#'s-top-left']/a[@innertext='新闻']
1.
三、关于xpath函数使用举例说明
1、contains():
//div[contains(@id,'in')] ,表示选择id中包含有’in’的div节点
2、text()
//a[text()='baidu'] ,用text()函数来匹配节点
//*[text()="神十四航天员名单合影公布"]
3、last()
book[last()] ,取xpath最后一个book元素
book[last()-1] ,取xpath最后第二个book元素
4、starts-with()
//div[starts-with(@id,'in')] ,表示选择以’in’开头的id属性的div节点
//*[starts-with(text(),"神十四航天员名单合影")]
5、not()
not()函数,表示否定
//input[@name=‘identity’ and not(contains(@class,‘a’))] ,表示匹配出name为identity并且class的值中不包含a的input节点。
特别注意
not()函数通常与返回值为true or false的函数组合起来用contains(),starts-with()等,但有一种特别情况请注意一下。
我们要匹配出input节点含有id属性的,写法如下://input[@id],如果我们要匹配出input节点不含用id属性的,则为://input[not(@id)]。
xpath中的ends-with无效,原因如下:
ends-with是xpath2.0的语法,可能你的浏览器还只支持1.0的语法。
标签:Xpath,定位,xpath,text,contains,关于,input,div,id 来源: https://www.cnblogs.com/alan5201314/p/16342527.html