在Selenium Grid中使用Chrome浏览器执行测试脚本时出现“Chrome无法访问”错误

问题描述 投票:1回答:1

我在使用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)
selenium selenium-webdriver selenium-grid
1个回答
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");
© www.soinside.com 2019 - 2024. All rights reserved.