Firefox无法通过Selenium WebDriver启动URL

时间:2018-09-13 04:42:49

标签: eclipse selenium webdriver eclipse-photon

我正在使用Eclipse Photon,Firefox 62.0 Quantum版本,Selenium 3.14.0,geckodriver版本0.21.0。

运行代码时,Firefox会打开,但不会启动URL。 一切都是最新的,将geckodriver设置为木偶。 请帮忙。

我的代码是:

import_module
    return _bootstrap._gcd_import(name[level:], package, level)

2 个答案:

答案 0 :(得分:2)

在使用壁虎驱动程序时,请使用正确的setProperty,因此您需要使用"webdriver.gecko.driver"

正确的代码是

public class test {
public static void main(String[] args) {
System.setProperty("webdriver.gecko.driver","C:\\Users\\nargi\\Downloads\\geckodriver.exe");
WebDriver driver = new FirefoxDriver();
driver.get("https://www.google.com");
}
}

答案 1 :(得分:0)

对我来说,当“木偶”更改为“ gecko.driver”时,此问题已解决