作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这些测试步骤。 app_host 指向“google.com”。
Given /^I am on google\.com$/ do
visit("/")
end
Then /^I should see something$/ do
has_css?('a#something')
end
无论我在第二步中有什么,测试都会通过。我只是想知道我是否遗漏了什么。
最佳答案
Cucumber 步骤只有在断言失败时才会失败。它们不会根据最后一行是真还是假而失败。
要在断言中使用 has_css?
,您可以执行以下操作之一:
#If you are using RSpec assertions
page.should have_css('a#something')
#If you are using Test::Unit assertions
assert page.has_css?('a#something')
关于cucumber - cucumber capybara 给出假阳性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13960434/
我是一名优秀的程序员,十分优秀!