作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试为FF48和 Selenium 3开启了牵线木偶的新型geckodriver,但该测试无法为任何元素选择下拉列表中的选项。我的测试在FF45和所有其他浏览器上都能正常运行。仅木偶驱动程序未在下拉列表中选择选项
new Select(driver.findElement(By.Id("topic"))).selectByVisibleText(item);
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);
最佳答案
我很惊讶没有人遇到这个问题。我想我可能在错误的位置发布了问题,因为我没有得到任何答复。
无论如何,事实证明这是Firefox 48中的错误。在Firefox 51(即时构建)中已得到修复。
如果您将Selenium 3 beta和Firefox 48与geckodriver一起使用,则将无法使用webdriver与任何下拉列表进行交互。该问题已在Firefox 51中修复。
关于firefox - 我无法使用木偶驱动程序和Selenium 3在FireFox 48的下拉列表中选择选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39026616/
5月1日消息,据外媒报道,虚拟现实(VR)技术已经出现,但它并不尽如人意。其中最重要的就是:虽然今天的VR系统已经可以塑造令人身临其境的视觉体验,但它们并不能满足我们所有的感官体验,比如至关重要的触
尝试通过 selenium 上传文件时出现以下错误。 org.openqa.selenium.WebDriverException: File not found: D:\Projekte\Ticke
我正在尝试使用 python 使用 javascript 废弃页面。我是这方面的初学者,所以我阅读了很多教程。我终于发现我需要 selenium、beautiful_soup 和 firefox we
我是一名优秀的程序员,十分优秀!