当我运行selenium webdriver脚本时,我收到一个名为
的错误"org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms. Firefox console output".
使用的平台:
此外,我尝试了谷歌的不同版本的Firefox和硒的许多建议,但我仍然面临这个问题。请帮我解决这个错误。
答案 0 :(得分:0)
尝试将Selenium 3.0.1与最新的Firefox一起使用。不要忘记download the gecko driver并将系统变量设置为它的路径:
System.setProperty("webdriver.gecko.driver","path of geckodriver.exe");
WebDriver driver = new FirefoxDriver();