从http://pre.google.com/p/chromedriver/downloads/list下载chrome驱动程序的更新版本(在下面的代码示例E://chromedriver.exe中)
public class ChromeTest { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "E://chromedriver.exe"); WebDriver driver = new ChromeDriver();driver.get("http://www.test.com"); }}


