从复杂的xpath中获取子元素

发布于 2025-01-16 11:35:43 字数 272 浏览 0 评论 0原文

因此,我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

就此别过 2025-01-23 11:35:43

如果可以使用此 XPath 定位父元素,

"((//p[contains(text(),'" + read_contract_title() + "')]/parent::div/parent::div)[2]//button)[2]"

则可以使用以下命令简单地定位其中的 button 元素

"((//p[contains(text(),'" + read_contract_title() + "')]/parent::div/parent::div)[2]//button)[2]//button"

:如果这是该父元素内唯一的 button 元素

In case parent element can be located with this XPath

"((//p[contains(text(),'" + read_contract_title() + "')]/parent::div/parent::div)[2]//button)[2]"

The button element inside it could be simply located with

"((//p[contains(text(),'" + read_contract_title() + "')]/parent::div/parent::div)[2]//button)[2]//button"

In case this is the only button element inside that parent element

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文