黄瓜应该看到按钮
我有一个表单,其中包含
<%= Submit_tag 'Search Event' %>
和一个黄瓜步骤,上面写着
And I should see "Search Event"
但这一步失败了..这是为什么?
这是我得到的错误
expected #has_content?("Search Event") to return true, got false (RSpec::Expectations::ExpectationNotMetError)
I have a form that has this
<%= submit_tag 'Search Event' %>
and a cucumber step that says
And I should see "Search Event"
but this step fails.. why is that?
Here is the error i get
expected #has_content?("Search Event") to return true, got false (RSpec::Expectations::ExpectationNotMetError)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
编写您自己的步骤,即使用 capybara (以及 rspec):
Write your own step, i.e. using capybara (rspec as well):
我认为这不起作用,因为按钮标签不是文本内容——它是提交按钮的值属性。
I think this doesn't work because the button label is not text content -- it's the value attribute of the submit button.
这项工作正面:
负面:
This work in positive:
in negative: