SimpleTest浏览器所有复选框相同名称

时间:2016-09-09 20:37:56

标签: checkbox browser simpletest

使用SimpleTest,如果它们共享相同的名称,我如何检查第三个复选框?

<input type='checkbox' class='style' name='same' value="First" />
<input type='checkbox' class='style' name='same' value="Second" />
<input type='checkbox' class='style' name='same' value="Third" />
<input type='checkbox' class='style' name='same' value="Forth" />

或者,当我使用SimpleTest获取()URL时,我可以以某种方式将ID添加到输入中吗?

1 个答案:

答案 0 :(得分:2)

我已经弄清楚了。这切换了正确的方框..

$browser->setField("same", array("Third"));