例如,有两个单选按钮说’A’和’B’.该网站自动选择B,但我想在ruby中使用Mechanize’A’.我也在使用Mechanize的最新版本.
form.radiobutton_with(:name => /b/).check
你也可以这样做:
form.radiobuttons.first.check
哪个更简洁,但更容易破坏(例如,如果您要更改表单的设计).