作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
自从升级到最新版本的 Selenium 以来,以下代码似乎已被弃用:
Selenium 3.6.0 & webdriver = new FirefoxDriver(capabilities) - deprecated?
完整代码:
System.setProperty("webdriver.gecko.driver", Base_Page.getConstant(Constant.GECKO_DRIVER_DIRECTORY));
DesiredCapabilities capabilities=DesiredCapabilities.firefox();
capabilities.setCapability("marionette", true);
webdriver = new FirefoxDriver(capabilities); //deprecated
最佳答案
来自https://raw.githubusercontent.com/SeleniumHQ/selenium/master/rb/CHANGES
3.4.1 (2017-06-13)
==================
Firefox:
* Added new Firefox::Options class that should be used to customize browser
behavior (command line arguments, profile, preferences, Firefox binary, etc.).
The instance of options class can be passed to driver initialization using
:options key. Old way of passing these customization directly to driver
initialization is deprecated.
从 3.4.1 版本开始,应使用 FirefoxOptions。
关于Selenium 3.6.0 & webdriver = 新的 FirefoxDriver(功能) - 已弃用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46669361/
我是一名优秀的程序员,十分优秀!