使用selenium, 怎样用select来执行下拉框内的选项的选择
使用selenium, 怎样用select来执行下拉框内的选项的选择。selenium.select()怎么用的??? 使用select时总是出现: Specified element is not a Select (has no options) selenium.select(selectLocator, optionLocator)
第一个参数是下拉框,第二个参数是选项.
出现上面的错误通常是你的下拉框定位错了. 这个是1.0得把;现在2.0用的是webDriver.
找不到select 得方法了,还要自己想办法实现 webDriver 用法如下:
WebElement enterInput = driver.findElement(locator);
Select select = new Select(enterInput) ;
select.selectByVisibleText(value);
页:
[1]