Capybara:找不到 HTML 内容的链接

发布于 2024-10-28 03:32:40 字数 510 浏览 0 评论 0原文

鉴于这样的 HTML 结构

<a href="…"><strong>My Link</strong></a>

黄瓜步骤捕获

When I follow "My Link"

不会被水豚通过使用默认 webstep 的

When /^(?:|I )follow "([^"]*)"$/ do |link|
  click_link(link)
end

,而这有效:

When I follow "<strong>My Link</strong>"

我使用 Capbybara 的时间不长,但我可以看到导致问题的原因。那么,从更一般的角度来看——解决这个问题的正确方法是什么?当然,这种情况一定很常见,对吧?

非常欢迎任何关于滥用黄瓜的想法和一般思考!

Given a HTML structure like this

<a href="…"><strong>My Link</strong></a>

is not caught by Capybara through a cucumber step

When I follow "My Link"

using a default webstep

When /^(?:|I )follow "([^"]*)"$/ do |link|
  click_link(link)
end

while this works:

When I follow "<strong>My Link</strong>"

I haven't been using Capbybara for long, but I can see what causes the problem. So, on a more general level — what's the proper way to go about this? Surely this case has to be pretty common, right?

Any ideas and general musings about Cucumber abuse very welcome!

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

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

发布评论

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

评论(1

ˇ宁静的妩媚 2024-11-04 03:32:40

我会将强标记移到锚标记之外,或者更好地使用 CSS。

或者您可以为链接分配 id 属性并使用它而不是内容。如果您的应用程序支持多种语言,这种方式是最好的。

否则你必须为这种特殊情况编写某种 xpath 选择器:

find(:xpath, "//a[contains(//text(), \"#{locator}\")]").click

未经测试,只是一个想法。

I would move strong tag outside anchor tag or better use CSS for that.

Or you can assign id attribute to link and use it instead of content. This way is the best if your app supports multiple languages.

Otherwise you have to write some sort of xpath selector for such special case:

find(:xpath, "//a[contains(//text(), \"#{locator}\")]").click

Not tested, just an idea.

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