这是情况。我下载了chrome webdriver,解压缩了文件,并完成了通过系统属性设置路径的步骤。我仍然无法从Eclipse打开chrome。请帮忙。
答案 0 :(得分:2)
您在系统属性中输入了错误的参数
Gecko驱动程序用于 firefox
如果您已经下载了chrome驱动程序,只需将geckodriver.exe替换为chromedriver.exe,否则,下载chrome驱动程序并将其放在系统属性中指定的文件夹中并运行代码。
您的代码将显示为:
System.setProperty("webdriver.chrome.driver", "C:\\Users\\...\\Drivers\\chromedriver.exe");
// **Note**: complete your path above
driver = new ChromeDriver();