Codeception单选按钮列表

时间:2015-12-10 08:30:13

标签: yii2 radiobuttonlist codeception

我有

形式的单选按钮列表
<div data-toggle="buttons" style="margin: 5px 0 20px">
     <label class="btn grey"><input type="radio" name="ResponseForm[nps]" value="0"> 0</label>
     <label class="btn grey"><input type="radio" name="ResponseForm[nps]" value="1"> 1</label>
     <label class="btn grey"><input type="radio" name="ResponseForm[nps]" value="2"> 2</label>
     <label class="btn grey"><input type="radio" name="ResponseForm[nps]" value="3"> 3</label>
     <label class="btn grey"><input type="radio" name="ResponseForm[nps]" value="4"> 4</label>
     <label class="btn grey"><input type="radio" name="ResponseForm[nps]" value="5"> 5</label>
     <label class="btn grey"><input type="radio" name="ResponseForm[nps]" value="6"> 6</label>
     <label class="btn grey active"><input type="radio" name="ResponseForm[nps]" value="7" checked=""> 7</label>
     <label class="btn grey"><input type="radio" name="ResponseForm[nps]" value="8"> 8</label>
     <label class="btn grey"><input type="radio" name="ResponseForm[nps]" value="9"> 9</label>
     <label class="btn grey"><input type="radio" name="ResponseForm[nps]" value="10"> 10</label>
</div>

当我尝试检查是否使用

选择了收音机时
    ::canSeeOptionsIsSelected('form input[type=radio]', 1);

这是一个错误:

 Step  I can see option is selected "form input[type=radio]",1
 Fail  Element located either by name, CSS or XPath element with 'selected option' was not found.

据我所知,它正在寻找一个选择标签,而不是一个单选按钮。如果不是检查无线电是否被选中的正确方法,那么是什么?

1 个答案:

答案 0 :(得分:0)

由于您未在HTML文件中使用form标记,因此您的选择器似乎格式不正确。也许在//input[@type='radio']函数

中尝试像canSeeOptionsIsSelected()这样的xpath