#前提・実現したいこと
大変恐れ入ります。簡単な画像投稿アプリができたのでRSpecでテスト中でございます。
ユーザー機能と投稿機能はテストできたのでコメント機能のテストをしようと思いました。
#発生している問題・エラーメッセージ
ユーザー機能、投稿機能と同じように、RSpecでテストしようとしたら、
コメント機能のテストのときだけ画面が真っ白になります。
(コメント→ユーザー機能→投稿機能の順でテストします)
で、Capybara::ElementNotFound:
のエラーになります。
※スクリーンショットも添付させていただきます。
画面の遷移としては「data:;→about:blank→記事を編集」です。
該当のソースコード
コードは以下になります。同じように記述をしたはずなのに、
UserはテストできCommentができない理由が分かりません。
Rails
1require 'rails_helper' 2 3RSpec.describe User, type: :system do 4 before do 5 user = FactoryBot.create(:user) 6 end 7 describe 'アカウント登録画面' do 8 context '必須項目を入力して、アカウント登録ボタンを押した場合' do 9 it 'アカウントが登録されること' do 10 visit root_path 11 click_link 'Signup' 12 fill_in('user_name', with: 'name') 13 fill_in('user_email', with: 'email@com') 14 fill_in('user_password', with: 'password') 15 fill_in('user_password_confirmation', with: 'password') 16 click_on 'アカウント登録' 17 expect(page).to have_content 'アカウント登録が完了しました。' 18 end 19 end 20 end 21 22 describe 'ログイン画面' do 23 context '必須項目を入力して、ログインボタンを押した場合' do 24 it 'ログインできること'do 25 visit root_path 26 click_link 'Login' 27 fill_in('user_email', with: 'user@com') 28 fill_in('user_password', with: 'password') 29 click_on 'ログイン' 30 expect(page).to have_content 'ログインしました。' 31 end 32 it 'プロフィールが編集できること' do 33 visit root_path 34 click_link 'Login' 35 fill_in('user_email', with: 'user@com') 36 fill_in('user_password', with: 'password') 37 click_on 'ログイン' 38 click_link 'プロフィールを編集する' 39 fill_in('user_name', with: 'change_user') 40 fill_in('user_email', with: 'change@com') 41 fill_in('user_profile', with: 'change') 42 click_on '更新' 43 expect(page).to have_content 'change_user' 44 expect(page).to have_content 'change@com' 45 end 46 it 'アカウントが削除されること' do 47 visit root_path 48 click_link 'Login' 49 fill_in('user_email', with: 'user@com') 50 fill_in('user_password', with: 'password') 51 click_on 'ログイン' 52 click_link 'プロフィールを編集する' 53 click_on 'アカウント削除' 54 page.driver.browser.switch_to.alert.accept 55 expect(page).to have_content 'アカウントを削除しました。またのご利用をお待ちしております。' 56 end 57 end 58 end 59end 60
Rails
1require 'rails_helper' 2 3RSpec.describe Comment, type: :system do 4 before do 5 user = FactoryBot.create(:user) 6 second_user = FactoryBot.create(:second_user) 7 stroll = FactoryBot.create(:stroll, user: second_user) 8 visit root_path 9 click_link 'Login' 10 fill_in('user_email', with: 'user@com') 11 fill_in('user_password', with: 'password') 12 click_on 'ログイン' 13 click_link 'Strolls' 14 click_link ('記事を読む'), match: :first 15 end 16 17 describe '投稿詳細画面' do 18 context "ログインしているユーザーが投稿者以外の場合" do 19 it 'コメントを投稿できること' do 20 fill_in('comment_content', with: 'chiba') 21 click_on 'コメントする' 22 expect(page).to have_content 'chiba' 23 end 24 it '自分のコメントを編集できること' do 25 fill_in('comment_content', with: 'chiba') 26 click_on 'コメントする' 27 click_link '編集' 28 fill_in('edit_comment', with: 'chibachiba') 29 click_on '編集する' 30 expect(page).to have_content 'chibachiba' 31 end 32 it '自分のコメントを削除できること' do 33 fill_in('comment_content', with: 'chiba') 34 click_on 'コメントする' 35 click_link '削除' 36 expect(page).to have_no_content 'chiba' 37 end 38 end 39 context "ユーザーがログアウトしている場合" do 40 it 'コメントを投稿できないこと' do 41 click_link 'Logout' 42 click_link 'Strolls' 43 click_link ('記事を読む'), match: :first 44 expect(page).to have_no_button 'コメントする' 45 end 46 end 47 end 48end 49
#試したこと
Commentのコードを他(投稿機能)のテストに移したりもしましたが、
Commentのテストのときだけ同じように画面が真っ白になります。
とても初歩的なところで勘違いというか、理解不足なような気がしますが、
申し訳ありません。お力添えいただけたら幸甚です。よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。