第一次运行Selenium网格时出现此错误:
线程“主”中的异常 org.openqa.selenium.SessionNotCreatedException:无法创建新的 服务:ChromeDriverService。
请帮助并提出建议!
下面是代码:
WebDriver driver;
ChromeOptions options = new ChromeOptions();
String URL = "http://www.google.com";
String Node = "http://192.168.22.139:5555/wd/hub";
System.setProperty("webdriver.chrome.driver", "C:\\chromedriver.exe");
DesiredCapabilities cap = DesiredCapabilities.chrome();
cap.setCapability(ChromeOptions.CAPABILITY,options);
cap.setPlatform(org.openqa.selenium.Platform.HIGH_SIERRA);
WebDriver remoteWebDriver = new RemoteWebDriver(new URL(Node),cap);
remoteWebDriver.get(URL);
Thread.sleep(5000);
remoteWebDriver.quit();
}