admin管理员组

文章数量:1122850

       将下载的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)中,

这样就可以不用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");	
	}
}

 

本文标签: 放在驱动程序浏览器目录下selenium