使用黄瓜和水豚,有没有办法验证字符串不存在于页面上?
例如,我如何写这个步骤的相反:
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