S C*_*ghe 5 java automated-tests selenium-chromedriver webdrivermanager-java
我正在使用 Web 驱动程序管理器来设置 chrome 驱动程序。设置驱动程序时我想添加一些chrome 选项?使用 Web 驱动程序管理器时我该怎么做?
我检查了 WebDriverManager API 但找不到任何线索..
public void WebDriverManagerTest()
{
//setup the chromedriver using WebDriverManager
WebDriverManager.chromedriver().setup();
//Create Chrome Options
ChromeOptions option = new ChromeOptions();
option.addArguments("--test-type");
option.addArguments("--disable-popup-bloacking");
DesiredCapabilities chrome = DesiredCapabilities.chrome();
chrome.setJavascriptEnabled(true);
option.setCapability(ChromeOptions.CAPABILITY, option);
//Create driver object for Chrome
WebDriver driver = new ChromeDriver(option);
//Navigate to a URL
driver.get("http://toolsqa.com");
//quit the browser
driver.quit();
}
Run Code Online (Sandbox Code Playgroud)
找到答案了..检查上面!
| 归档时间: |
|
| 查看次数: |
3178 次 |
| 最近记录: |