我尝试使用selenium webdriver启动firefox浏览器并打开网页示例google.com
。我成功地启动了浏览器,但启动网页时遇到了一些问题。我得到了错误
线程“main”中的异常
org.openqa.selenium.remote.UnreachableBrowserException:不能 开始一个新的会议。
可能的原因是远程服务器或浏览器的无效地址 启动失败。
我的相同代码在其他系统中运行良好。
package beast;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class launchGmail {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("1");
WebDriver driver = new FirefoxDriver();
System.out.println("2");
driver.get("http://google.com");
System.out.println("3");
driver.quit();
}
}
答案 0 :(得分:0)
这可能是因为Firefox浏览器与您正在使用的Selenium版本不兼容。您可以升级Selenium WebDriver的版本或降级Firefox版本。