线程“main”中的异常org.openqa.selenium.SessionNotCreatedException:无法找到匹配的一组功能

时间:2018-06-11 12:31:30

标签: java selenium selenium-webdriver

我有Selenium v​​3.12.0,Mozilla Firefox v48 在selenium中运行测试用例时,我无法从eclipse打开mozilla firefox。我写的代码是:

\"foo\" \"bar\" \"spam\ eggs\"

我得到的例外是:

import org.openqa.selenium.WebDriver;

import org.openqa.selenium.firefox.FirefoxDriver;

public class MyFirstTestCase {

    public static void main(String[] args) {

        System.setProperty("webdriver.gecko.driver", "C:\\Users\\MI SERVICE\\Downloads\\geckodriver.exe");

        WebDriver driver = new FirefoxDriver();

        driver.get("http://learn-automation.com");

        driver.quit();

    }

}

不匹配在哪里?请帮忙。

0 个答案:

没有答案