前提・実現したいこと
現在、RspecのSystemテストを行っています。
テキストフィールドの部分をfill_inを用いて行っているのですが、どうしても下記のようなエラーになってします。
どの部分が誤っているか分かりますでしょうか?
発生している問題・エラーメッセージ
Failure/Error: fill_in "Name", with: list.name Capybara::ElementNotFound: Unable to find field "Name" that is not disabled
ソースコード
<div class="field"> <strong class="label_lists_new-edit"><%= f.label :name, t('.name *required') %></strong> <%= f.text_field :name %> </div>
テストコード
fill_in "Name", with: list.name
検証モード
### 試したこと
fill_in "Name", "name", "list[name]", "list_name", "店舗名 ※必須" with: list.name
あなたの回答
tips
プレビュー