xpath路径定位
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xpath路径定位相关的知识,希望对你有一定的参考价值。
preceding-sibling选择同级层所有节点向前查找
//div[@id=‘id1‘]/preceding-sibling::div/a
following-sibling选择同级层所有节点向后查找
//div[@id=‘id2‘]/following-sibling::div/input
查找上一父节点..(两点)
//input[@name=‘name1‘]/..
动态查找如id=wpf_button_0101或文本包含 搜索01
//input[contains(@id,‘wpf_button‘)]
//a[contains(text(),‘搜索‘)]
多个属性定位表达式
//input[@value=‘Search‘][@type=‘button‘]
//input[@value=‘Search‘ and @type=‘button‘]
以上是关于xpath路径定位的主要内容,如果未能解决你的问题,请参考以下文章