我正在使用chrome浏览器在selenium Grid中运行自动化测试脚本,并且出现Chrome not reachable
错误。
cucumber.runtime.CucumberException:
org.openqa.selenium.WebDriverException:
chrome not reachable
(Session info: chrome=68.0.3440.84)
(Driver info: chromedriver=2.41.578700 (2f1ed5f9343c13f73144538f15c00b370eda6706),platform=Linux 3.10.0-957.1.3.el7.x86_64 x86_64) (WARNING: The server did not provide any stacktrace information)
答案 0 :(得分:0)
我看到您的平台是Linux。如果尚未完成,您能否将以下功能与您现有的功能一起添加,让我们知道。
ChromeOptions cOptions = new ChromeOptions();
//argument to switch off suid sandBox and no sandBox in Chrome
chrome_options.add_argument("--no-sandbox");
chrome_options.add_argument("--disable-setuid-sandbox");