小编典典

在Chromium浏览器中使用Selenium

selenium

在Selenium选项(在Firefox上)中,我可以找到 Custom browser

是否可以使用此选项在 Chromium浏览器 (而非Chrome)中运行Selenium测试?


阅读 644

收藏
2020-06-26

共1个答案

小编典典

是。用于镀铬

DefaultSelenium selenium = new DefaultSelenium("localhost", 4444, "*custom path/to/chromium" , "www.google.com");
selenium.start();

您可以使用的其他选项是 custom, chrome(注意:这不是Google chrome,仅适用于Firefox模式),
googlechrome,
iexplore。请查看硒文档以获取模式的完整列表。

编辑: 谷歌浏览器更改为铬

2020-06-26