一、首先下载selenium webDriver jar包,下载地址如下:
http://selenium-release.storage.googleapis.com/index.html
二、下载ChromeDriver 与 Chrome浏览器,这两个要对应:
Chromedriver下载地址:http://chromedriver.storage.googleapis.com/index.html
浏览器下载地址:https://www.slimjet.com/chrome/google-chrome-old-version.php
可以先下载ChromeDriver ,这个里面有个文件notes.txt 可以查看对应版本的Chrome浏览器
最后下载Chrome浏览器并按照
三、eclipse新建一个JavaProject导入webDriver jar包
四、编写测试代码
//设置访问Chromedriver的路径
System.setProperty("webdriver.chrome.driver", "E:\\workspace\\seleniumSource\\lib\\chromedriver.exe");
WebDriver driver =new ChromeDriver();
//打开百度网页
driver.get("https://www.baidu.com/");