我在写一个硒的测试案例。下面是我用来匹配数据表中所有“修改”按钮的 xpath 表达式。
//img[@title='Modify']
我的问题是,如何通过索引访问匹配的节点集
//img[@title='Modify'][i]
还有
//img[@title='Modify' and position() = i]
但都不管用。 I also tried with XPath checker(One firefox extension). There're totally 13 matches found, then I have totally no idea how am I gonna select one of them.. 还是 XPath 支持指定的不在同一父节点下的节点选择?