如何在组合框中选择一个选项或在网页驱动程序中下拉.....?

时间:2014-01-30 13:42:43

标签: selenium-webdriver selenium-rc

我正在使用seleniumRC driver.select(selectLocator, Optionvalue)的方法 如何在selenium web驱动程序中更换它?

1 个答案:

答案 0 :(得分:0)

在webdriver中,您可以使用以下内容:

new Select(driver.findElement(By.*locator*("*value*"))).selectByVisibleText("text");

这里selectBy也有各种方法,如selectByIndex,selectByValue。