使用Firefox 47.0运行Seleniuem Web驱动程序2.53.0

时间:2016-06-27 14:28:09

标签: selenium firefox

我刚开始使用selenium web驱动程序运行测试脚本。我将以下代码编码为开头。

    package myPackage;

    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.firefox.FirefoxDriver;

    public class myTest {
       public static void main(String[] args){

            WebDriver driver = new FirefoxDriver();

            driver.get("http://www.facebook.com");

            driver.manage().window().maximize();
        }
    }

当我将其作为Java应用程序运行时,它始终显示以下错误消息。

Exception in thread "main"    org.openqa.selenium.remote.UnreachableBrowserException: Error communicating with the remote browser. It may have died.

只是浏览器打开,但Facebook页面无法打开。 解决方案是什么?

0 个答案:

没有答案