前提・実現したいこと
タイトルのとおりです。
rspecで画像のテストをしていたところ、下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
1) Potepan::Categories カテゴリ商品などの情報が表示されること Failure/Error: expect(page).to have_selector product_image Nokogiri::CSS::SyntaxError: unexpected '#' after '' # (eval):3:in `_racc_do_parse_c' # (eval):3:in `do_parse' # ./spec/features/potepan/categories_spec.rb:22:in `block (3 levels) in <top (required)>' # ./spec/features/potepan/categories_spec.rb:19:in `block (2 levels) in <top (required)>' Finished in 21.01 seconds (files took 13.43 seconds to load) 4 examples, 1 failure Failed examples: rspec ./spec/features/potepan/categories_spec.rb:18 # Potepan::Categories カテゴリ商品などの情報が表示されること
該当のソースコード
require 'rails_helper' RSpec.feature "Potepan::Categories", type: :feature do given!(:taxonomy) { create(:taxonomy, name: "categories") } given!(:taxon) { taxonomy.root } given!(:product) { create(:product, name: "Bags", taxons: [taxon]) } given!(:product_image) { product.master.images.create(attachment: create(:image).attachment) } background do visit potepan_category_path(taxon.id) end scenario 'タイトルがカテゴリー名になっていること' do expect(page).to have_title "#{taxon.name} - BIGBAG Store" end scenario 'カテゴリ商品などの情報が表示されること' do within '.taxon_product_box' do expect(page).to have_content product.name expect(page).to have_content product.display_price expect(page).to have_selector product_image ← この部分 end end scenario '商品カテゴリーをクリックしたらカテゴリー一覧が表示されること' do within '.category_nav' do find('.collapse_toggle').click taxon.leaves.each do |category| expext(page).to have_content category.id expext(page).to have_content category.name expext(page).to have_content category.products.count end end end scenario '商品をクリックしたら商品詳細ページへ移動すること' do click_on product.name visit potepan_product_path(product.id) end end
試したこと
Nokogiri::CSS::SyntaxErrorやunexpected '#' after ''でググって原因を調べましたが、分かりませんでした。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/21 11:56