0

所以我正在使用Selenium IDE,我必须断言该字段是一个下拉菜单,我可以使用哪些命令?

这是我到目前为止没有成功的尝试:

Command: assertSelectedValue
select: *name of drop down* 
value: ?
4

1 回答 1

0

使用assertValue()

页:

<select name="select_example">
  <option value="my_1">text1</option>
  <option value="my_2">text2</option>
</select>

命令:

Command: assertValue
Target: name=select_example
Value: my_1
于 2013-11-01T09:49:04.477 回答