ruby-on-rails – 黄瓜/水豚:检查一个页面没有内容?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 黄瓜/水豚:检查一个页面没有内容?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用黄瓜和水豚,有没有办法验证字符串不存在于页面上?

例如,我如何写这个步骤的相反:

Then /^I should see "(.*?)"$/ do |arg1|
  page.should have_content(arg1)
end

如果arg1存在,则通过.

如果找到arg1,我将如何编写失败的步骤?

解决方法

http://rubydoc.info/github/jnicklas/capybara/master/Capybara/Node/Matchers#has_no_text%3F-instance_method

Capybara有一个has_no_content匹配器.所以你可以写

Then /^I should not see "(.*?)"$/ do |arg1|
    page.should have_no_content(arg1)
  end
原文链接:https://www.f2er.com/ruby/273763.html

猜你在找的Ruby相关文章