Capybara选择单选按钮

时间:2014-02-10 19:09:16

标签: testing capybara

我有一组单选按钮,可以在单击时显示页面上的更多选项。这是一组单选按钮......

<div class="field">
Single
<input id="selection_single" type="radio" value="single" name="selection" checked="checked">
Repeating Dates
<input id="selection_repeating" type="radio" value="repeating" name="selection">
</div>

我想点击第二个按钮w / id selection_repeating。在我的spec文件中,我选择了(“selection_repeating”),但是在运行脚本时遇到错误,说无法找到单选按钮“selection_repeating”。有什么想法吗?

0 个答案:

没有答案