rspec-rails (4.0.1)
capybara (3.32.2)
セレクトボックスの選択状態にしたく、以下のようにしましたがエラーになります。
rspec
ruby
1 select '小説', from: 'item[category_id]'
html
html
1<label for="item_category_id">カテゴリ</label> 2 <select class="select-parent" name="item[category_id]" id="item_category_id"><option value="">選択して下さい</option> 3<option data-children-path="/categories/1/sub_categories" value="1">漫画</option> 4<option data-children-path="/categories/2/sub_categories" value="2">小説</option> 5<option data-children-path="/categories/3/sub_categories" value="3">写真集</option> 6<
エラーメッセージ
ruby
1Failure/Error: select '小説', from: 'item[category_id]' 2 3 Capybara::ElementNotFound: 4 Unable to find option "小説" within #<Capybara::Node::Element tag="select" path="/HTML/BODY[1]/DIV[1]/DIV[1]/DIV[1]/FORM[1]/SELECT[1]">
以下の方法も試しましたが
ruby
1find("option[value='小説']").select_option
下のエラーになります。
Failure/Error: find("option[value='小説']").select_option Capybara::ElementNotFound: Unable to find css "option[value='小説']"
分かる方教えていただけないでしょうか?
宜しくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/28 00:51
2020/11/12 21:04
2020/11/12 21:13
2020/11/13 00:30
2020/11/15 20:00