我尝试了为 FF48 和 selenium 3 打开木偶的新 geckodriver,但测试无法在下拉列表中选择任何元素的选项。我的测试在 FF45 和所有其他浏览器中运行良好。只有木偶驱动不选择下拉列表中的选项
new Select(driver.findElement(By.Id("topic"))).selectByVisibleText(item);
代码运行良好,直到我开始使用带有木偶的壁虎驱动程序。
下面是我用来设置 geckodriver 和木偶的代码。
System.setProperty("webdriver.gecko.driver", System.getProperty("user.dir")+"\\geckodriver.exe");
ProfilesIni profile = new ProfilesIni();
FirefoxProfile myprofile = profile.getProfile("DefaultProfile");
myprofile.setPreference("network.proxy.type", ProxyType.AUTODETECT.ordinal());
DesiredCapabilities dc=DesiredCapabilities.firefox();
dc.setCapability(FirefoxDriver.PROFILE, myprofile);
dc.setCapability("marionette", true);
driver = new FirefoxDriver(dc);
当它试图从元素中选择一个选项时,测试不会抛出任何异常。
new Select(driver.findElement(By.Id("topic"))).selectByVisibleText(item);
在研究了这个问题后,原来FF48有一个bug,它在firefox ngithly 51中得到了修复。在我等待FF51发布的时候,有什么解决方法可以让它在FF48中工作吗?