无法在您的浏览器中加载 Google 搜索页面

Unable to load the Google Search page in your browser

我编写了一个简单的代码来启动 Firefox 浏览器并加载 google 页面,但它启动了浏览器但无法加载我正在使用的 google 页面 selenium-java-2.33.0firefox 35.0 版本

package com.webdriver.chapter1;

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

public class navigateToAUrl {
public static void main(String[] args) {
WebDriver driver = new FirefoxDriver();
driver.get("http://www.google.com");

}
}

导致问题的原因是什么?

您的网络驱动程序 jar 与您使用的 firefox 版本不兼容。 使用最新版本 2.44 的 jars(此时发布此答案)。

从这里下载 http://www.seleniumhq.org/download/ 并用新的 jar 替换旧的。它应该可以正常工作。