我刚开始使用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页面无法打开。 解决方案是什么?