我如何访问 pop ui 按钮?

发布于 2024-11-06 11:47:34 字数 260 浏览 0 评论 0原文

我有一个通过删除对象触发的弹出按钮。如果我似乎可以找到它,我该如何单击该按钮。

我像这样使用 xpath:

$browser.button(:xpath, "/html/body/div/div/div/div/div/div/button").click

这是一个代码片段: 文本已突出显示。

提前致谢。

I have a pop up button that is triggered by deleting an object. How can I click the button if I can seem to find it.

I have used xpath like so:

$browser.button(:xpath, "/html/body/div/div/div/div/div/div/button").click

Here is a code snippet:
The text is Highlighted.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

画尸师 2024-11-13 11:47:34

试试这个:

browser.span(:text => "Delete").click

或者

browser.span(:class => "ui-button-text).click

或者

browser.button(:class => /ui-button/).click

Try this:

browser.span(:text => "Delete").click

or

browser.span(:class => "ui-button-text).click

or

browser.button(:class => /ui-button/).click
辞别 2024-11-13 11:47:34

我不确定您到底想单击哪个按钮。 :)
但是,如果您尝试单击上面 DOM 片段中显示的“删除”按钮,则可以尝试此 xpath。 "//button/span[.='Delete']"

希望这会有所帮助。

I am not sure exactly which button are you trying to click. :)
But if you are trying to click on the Delete button shown in the DOM snippet above then, you can try this xpath. "//button/span[.='Delete']"

Hope this helps.

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