Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果 xpath 表达式找到感兴趣的节点,我如何修改该 xpath 以便返回定位的节点和所有兄弟节点?
我使用的是 selenium,所以支持的 XPath 版本取决于浏览器。
如果没有您的具体示例,这有点困难,但最好的方法是选择感兴趣节点的父节点的所有子节点(我假设您在这种情况下是指元素节点)。您只需使用“/../*”之类的结构。如果您发布您的实际代码,我们可以给出更好的答案。
如果您使用表单的路径表达式选择节点a/b/c/d[PRED],请尝试将其更改为a/b/c[d[PRED]]/*.
a/b/c/d[PRED]
a/b/c[d[PRED]]/*