我有Selenium v3.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();
}
}
不匹配在哪里?请帮忙。