9
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Capybaraでchooseを使わずにラジオボタンにチェックする

Posted at

概要

idもlabelもないラジオボタンはchooseメソッドが使えないようなのですが、
チェックしたかったので試してみました。
capybaraのchooseメソッドが、inputタグに対してset(true)しているだけだったので、
chooseを使わずにラジオボタンをチェックしました。

実装

value="hoge" のinputタグに対してチェックする。

<div class="radios">
  <input class="radio" type="radio" value="hoge">
  <input class="radio" type="radio" value="fuga">
  <input class="radio" type="radio" value="piyo">
</div>
find("input[value='hoge']").set(true)

参考文献

capybara/actions.rb / choose · jnicklas/capybara

9
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?