我正在使用seleniumRC driver.select(selectLocator, Optionvalue)
的方法
如何在selenium web驱动程序中更换它?
答案 0 :(得分:0)
在webdriver中,您可以使用以下内容:
new Select(driver.findElement(By.*locator*("*value*"))).selectByVisibleText("text");
这里selectBy也有各种方法,如selectByIndex,selectByValue。