我有一个令人愤怒的Selenium错误:
驱动程序可执行文件的路径必须由webdriver.chrome.driver系统属性
设置
以下是我正在使用的代码:
Environment.SetEnvironmentVariable("webdriver.chrome.driver", @"C:\ChromeDriver\chromedriver.exe");
DesiredCapabilities capability = DesiredCapabilities.Chrome();
ChromeOptions options = new ChromeOptions();
options.BinaryLocation = @"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe";
capability.SetCapability(ChromeOptions.Capability, options);
Uri url = new Uri("http://localhost:5050/wd/hub");
//error on this line
IWebDriver driver = new RemoteWebDriver(url, capability);
我在该位置的磁盘上有驱动程序。
selenium服务器正在运行,如下所示:
我已将selenium二进制文件添加为系统变量,如下所示:
我也重新启动了服务器。
我错过了什么?感觉好像我正在做的一切都正确,但它没有用。
由于
答案 0 :(得分:1)
使用新的selenium,3.0,你应该使用:
java -Dwebdriver.chrome.driver=path_to_chrome_driver -jar selenium-server-standalone-3.0.0-beta2.jar
如果您使用低于3.0的硒版本,则需要使用驱动程序反转硒的顺序,例如:
java -Dwebdriver.chrome.driver=path_to_chrome_driver -jar selenium_server.jar
还要确保selenium服务器与chromedriver兼容。 要检查的其他事情是Chrome浏览器是最新的。