黄瓜 - 测试视图有一个特定的链接

发布于 2024-10-31 18:41:33 字数 95 浏览 0 评论 0原文

如何测试视图上是否有特定链接?例如,这是我的观点:%div = link_to“something”,something_path,我需要测试该链接是否存在于页面上......

how do i test that a view has a specific link on it? e.g this is on my view: %div = link_to "something", something_path and i need to test that this link exists on the page....

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

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

发布评论

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

评论(1

少女七分熟 2024-11-07 18:41:33

如果您将 Webrat 匹配器与 Cucumber 一起使用:

rendered.should have_selector("div") do |div|
  div.should have_selector("a", :href => "url")
end

If you're using Webrat matchers with Cucumber:

rendered.should have_selector("div") do |div|
  div.should have_selector("a", :href => "url")
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文