カピバラのウェブページにボタンが表示されないようです。ここに私のテストコードがあります
before(:each) do
@inspiring = PostMotivation.create(:title => "This is title",:body => "body main content",:short => "short content of this post",:date => "20.06.2014")
end
it "should redirect when you want to add new comment" do
visit "/inspiring"
click_button("add_comment")
end
そして、ここで私の見解を見ることができます:
<%= button_to new_main_dupa_path(0,0,@post_to_render3.id), class: "button",id: "add_comment" do %>
Add new comment!
<% end %>
エラーは次のとおりです。
2) Testing inspiring subpage with integration tests should redirect when you want to add new comment
Failure/Error: click_button("add_comment")
Capybara::ElementNotFound:
Unable to find button "add_comment"
# ./spec/features/inspiring.rb:39:in `block (2 levels) in <top (required)>'
カピバラにこのボタンを見せる方法は?この問題の解決策が見つかりませんでした。事前に感謝します。