【发布时间】:2017-07-28 00:16:11
【问题描述】:
在 Firefox 51.0.1 上使用 Selenium 3.0.1 在 Firefox 浏览器上打开 URL 时遇到问题
环境:
MAC Sierra Eclipse Neon.2 Firefox 51.0.1
我收到以下异常:
org.openqa.selenium.firefox.NotConnectedException:无法连接 45000 毫秒后在端口 7055 上托管 127.0.0.1。火狐控制台 输出:“错误。还附上了快照。
这是我的代码:
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class JavaScriptExecutor {
public static void main(String[] args) {
System.setProperty("webdriver.firefox.marionette", "/Users/saraddhungel/Downloads/geckodriver");
WebDriver driver = new FirefoxDriver();
driver.get("www.google.com");
}[error message][1]
}
谢谢
【问题讨论】: