我有以下单选按钮:
<input type="radio" value="0" /> Correct
<input type="radio" value="1" /> Wrong
<input type="radio" value="2" /> Wrong
<input type="radio" value="3" /> Wrong
我正在尝试使用Capybara选择标签为“Wrong”的第一个输入。从文档中看,这似乎应该有效:
choose first "Wrong"
但是我收到一条错误消息:
Ambiguous match, found 4 elements matching radio button nil
帮助?
答案 0 :(得分:2)