1. 程式人生 > >java+selenium環境搭建

java+selenium環境搭建

1、安裝、配置JDK1.6
配置JAVA_HOME
右擊我的電腦-->屬性-->高階系統設定-->高階-->環境變數

Path中增加%JAVA_HOME%\bin;

2Java IDE中引用selenium-java-2.40.0.jarselenium-server-standalone-2.40.0.jar

專案目錄右鍵-->Build Path--> config build path-->Java BuildPath-->Libraries-->Add External JARs,新增selenium-java-2.40.0.jar

selenium-server-standalone-2.40.0.jar

3、拷貝chromedriver.exesystem32目錄,安裝chrome瀏覽器

4、測試環境是否搭建成功

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

public class test1 {
	public static void main(String[] args) throws InterruptedException {
		WebDriver dr = new ChromeDriver();
		dr.get("http://www.baidu.com");	//開啟首頁
		dr.manage().window().maximize();	//最大化
		Thread.sleep(3000);
		dr.quit();
	}
}