我正在使用 Eclipse Photon、Firefox 版本 62.0 Quantum、Selenium 3.14.0、geckodriver 版本 0.21.0。
当我运行代码时,Firefox 会打开,但不会启动 URL。一切都是最新的,geckodriver 被设置为木偶。请帮忙。
我的代码是:
package firstSelenium;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class test {
public static void main(String[] args) {
System.setProperty(
"webdriver.firefox.marionette",
"C:\\Users\\nargi\\Downloads\\geckodriver.exe"
);
WebDriver driver = new FirefoxDriver();
driver.get("https://www.google.com");
}
}