rspecにてクリック指定したリンクを認識してくれず、 Capybara::ElementNotFound:がでます。
やってみたこと
withinメソッドにて下記view部の”productBox”を指定する→指定箇所も特定されず。
エラー内容
リンクが見つからないと怒られてしまいます。
Failure/Error: expect(page).to have_link product.name expected to find link "TestProduct" but there were no matches
rspec
let(:taxonomy) { create(:taxonomy) } let(:taxon) { create(:taxon, name: 'Test', taxonomy_id: 1) } let(:product) { create(:product, name: 'TestProduct', taxons: [taxon]) } it '商品ページリンク正常動作' do click_on product.name expect(current_path).to eq potepan_product_path(product.id) end
こちらのproduct.nameをクリックさせようとするも、上記のエラーがでます。
<% products.each do |product| %> <div class="col-sm-4 col-xs-12"> <div class="productBox"> <%= link_to potepan_product_path(product.id) do %> <div class="productImage clearfix"> <%= image_tag product.display_image.attachment(:product) %> </div> <div class="productCaption clearfix"> <h5><%= product.name %></h5> <h3><%= number_to_currency(product.price) %></h3> </div> <% end %> </div> </div> <% end %>
どうぞよろしくお願い致します。
あなたの回答
tips
プレビュー