select2 のテストについて
Capybara で、ある項目を選択したい時のメモ
普通の select と同じようにやると上手くいかない
select([option 名], from: [label 名])
=>
Capybara::ElementNotFound:
Unable to find select box [label 名] that is not disabled and Unable to find input box with datalist completion [label 名] that is not disabled
タグ構造が変わっているから ?
同じように質問している人がいる
へー、Gem もあるのか(割と最近も更新されている)
手軽にやるなら、とりあえず愚直にやれば OK(他にも方法あるみたいだけど)
find("option[value=[対象の option 値]]").select_option