在Chromium浏览器中使用Selenium
在Selenium选项(在Firefox上)中,我可以找到 。
是否可以使用此选项在 Chromium浏览器 (而非Chrome)中运行Selenium测试?
回答:
是。用于镀铬
DefaultSelenium selenium = new DefaultSelenium("localhost", 4444, "*custom path/to/chromium" , "www.google.com");selenium.start();
您可以使用的其他选项是 custom, chrome(注意:这不是Google chrome,仅适用于Firefox模式),
googlechrome, iexplore。请查看硒文档以获取模式的完整列表。
谷歌浏览器更改为铬
以上是 在Chromium浏览器中使用Selenium 的全部内容, 来源链接: utcz.com/qa/416554.html