通过 xpath 选择器与元素交互

发布于 2024-11-10 18:40:44 字数 246 浏览 1 评论 0原文

我看到很多文档和人们使用 xpath 与水豚的示例,但由于某种原因,我没有找到任何关于如何做最简单的事情的信息...单击由 xpath 选择器标识的(按钮|链接|任何内容)。如何完成如下步骤定义:

Given /^I click the element identified by xpath "([^"]*)"$/ do |xpath_selector|
  click_button(xpath_selector)
end

I see a lot of documentation and examples of people using xpath with capybara but for some reason I don't find anything on how to do the simplest thing... click a (button|link|whatever) identified by an xpath selector. How does one accomplish a step definition like:

Given /^I click the element identified by xpath "([^"]*)"$/ do |xpath_selector|
  click_button(xpath_selector)
end

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

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

发布评论

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

评论(1

旧故 2024-11-17 18:40:44

如果您想手动指定 xpath 选择器并单击该元素,无论它是什么(按钮、链接、div 等),请尝试:

page.find(:xpath, xpath_selector).click

If you want to manually specify the xpath selector and click the element no matter what it is (button, link, div, etc), try:

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