selenium中chrome驱动程序chromedriver.exe存放在chrome浏览器的安装目录下

       将下载的chrome驱动程序chromedriver.exe复制到chrome浏览器的安装目录下,也就是appication目录下,如:chrome的安装路径是:C:\Users\admin\AppData\Local\Google\Chrome\Application,那么将下载的驱动程序chromedriver.exe复制到: C:\Users\admin\AppData\Local\Google\Chrome\Application 路径下,同时将此路径增加到环境变量path中(我的电脑--》右键——》属性——》高级系统设置——》环境变量——》系统变量——》path)中,

selenium中chrome驱动程序chromedriver.exe存放在chrome浏览器的安装目录下_第1张图片

这样就可以不用setProperty来设置驱动程序的路径了,代码如下:

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;

public class KeywordBrowserChrome {

	public static void main(String[] args) {
		WebDriver driver = new ChromeDriver();
		driver.get("http://www.baidu.com");	
	}
}

 

你可能感兴趣的:(浏览器,seleinium,java)