zijingzhiyue 发表于 2011-4-20 16:43:18

使用selenium, 怎样用select来执行下拉框内的选项的选择

使用selenium, 怎样用select来执行下拉框内的选项的选择。

selenium.select()怎么用的???

zijingzhiyue 发表于 2011-4-20 16:47:33

使用select时总是出现: Specified element is not a Select (has no options)

robin.von 发表于 2011-4-21 08:48:43

selenium.select(selectLocator, optionLocator)

第一个参数是下拉框,第二个参数是选项.

出现上面的错误通常是你的下拉框定位错了.

rivermen 发表于 2011-4-28 15:01:09

这个是1.0得把;现在2.0用的是webDriver.
找不到select 得方法了,还要自己想办法实现

wwyfriend 发表于 2016-5-15 22:53:34

webDriver 用法如下:
WebElement enterInput = driver.findElement(locator);
Select select = new Select(enterInput) ;
select.selectByVisibleText(value);
页: [1]
查看完整版本: 使用selenium, 怎样用select来执行下拉框内的选项的选择