从复杂的xpath中获取子元素
因此,我在 DOM 中遇到一些复杂的情况,我需要创建 XPath 并获取其子元素。我有以下 XPath
((//p[contains(text(),'" + read_contract_title() + "')]/parent::div/parent::div)[2]//button)[2]
上面基本上是一个...更多选项按钮,我需要单击它,然后单击其中的子元素。
如何获取上述 XPath 中的子元素(按钮)?
期待您的帮助和回复。
So I have some complicated situation in the DOM where I need to create XPath and get its child element. I have the following XPath
((//p[contains(text(),'" + read_contract_title() + "')]/parent::div/parent::div)[2]//button)[2]
The above is basically a ... more options button, that I need to click and then click the child element inside of it.
How do I get about getting the child element (button) inside the above XPath?
Looking forward to your help and reply.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果可以使用此 XPath 定位父元素,
则可以使用以下命令简单地定位其中的
button
元素:如果这是该父元素内唯一的
button
元素In case parent element can be located with this XPath
The
button
element inside it could be simply located withIn case this is the only
button
element inside that parent element