以下工作正常:
Then /^I should see a button called "([^\"]*)"$/ do |name|
response.should have_selector("li") do |li|
li.should have_selector("a") do |a|
a.should contain(name)
end
end
end
现在我需要用这样的步骤补充它:
Then /^I should not see a button called "([^\"]*)"$/ do |name|
[snip...]
end
标准“我不应该看到”并不令人满意,因为它会在页面的任何位置拾取目标短语 - 而不仅仅是在按钮内。我特别需要检查没有带有目标文本的按钮。
我的第一直觉是尝试这样的事情:
Then /^I should see a button called "([^\"]*)"$/ do |name|
response.should have_selector("li") do |li|
li.should have_selector("a") do |a|
a.should_not contain(name)
end
end
end
但是,只要页面上没有包含目标文本的任何按钮,即使还有一个或多个按钮包含目标文本,它也会通过。
你的想法?
非常感谢,
史蒂芬。
答案 0 :(得分:2)
您可以使用assert_not_contain
(也许not_contain
,但我对此表示怀疑,因为它不在rdoc中。
a.should assert_not_contain(name)
答案 1 :(得分:1)
问题解决了!我给了每个控件一类“控制”,然后写了 这一步定义:
Then /^I should not see a control called "([^\"]*)"$/ do |name|
response.should have_selector("a.control", :content => name, :count
=> 0)
end
当然,这假设我很乐意给他们所有的一类 “对照” ...
第
答案 2 :(得分:0)
你的按钮实际上是链接吗?对于按钮(有提交值),我使用:
assert_have_selector "input[type=submit][value=\"#{text}\"]"
和
assert_have_no_selector "input[type=submit][value=\"#{text}\"]"
第h