标签:detail index 插件 表达式 position on() last 开发工具 位置
/: 从根节点开始选取
/Student:没有结果
/School:选区School节点
//: 选取节点,不考虑位置
//age: 选取出三个节点,一般组成列表返回
xpath中查找一般按照路径方法查找,一下是路径表示方法
School/Teacher:返回Teacher节点
School/Student: 返回两个Student节点
//Student: 选取所有Studetn的节点,不考虑位置
School//Age:选取School后代中所有Age节点
//@Other: 选取Other属性
//Age[@Detail]: 选取带有属性Detail的Age元素
|: 或者
//Student[@score] | //Teacher: 选取带有属性score的Student节点和Teahcer节点
其余不常见XPath运算符号包括+, - , *, div, >, <
标签:detail index 插件 表达式 position on() last 开发工具 位置
原文地址:https://www.cnblogs.com/xuxaut-558/p/10031446.html