找不到匹配的功能集和ChromeDriver

时间:2019-02-26 03:42:03

标签: java google-chrome selenium-webdriver automation chrome-web-driver

这是情况。我下载了chrome webdriver,解压缩了文件,并完成了通过系统属性设置路径的步骤。我仍然无法从Eclipse打开chrome。请帮忙。

Unable to find matching set of capabilities

1 个答案:

答案 0 :(得分:2)

您在系统属性中输入了错误的参数

  1. Gecko驱动程序用于 firefox

  2. 如果您已经下载了chrome驱动程序,只需将geckodriver.exe替换为chromedriver.exe,否则,下载chrome驱动程序并将其放在系统属性中指定的文件夹中并运行代码。

  3. 您的代码将显示为:

    System.setProperty("webdriver.chrome.driver", "C:\\Users\\...\\Drivers\\chromedriver.exe");
    // **Note**: complete your path above
    driver = new ChromeDriver();