WebDriver 使用初探

package webdriver;

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

/**
 * 
 * 
 * @Classname:DriverTest
 * @Description:使用WebDriver打開baidu.com
 * @Author:KongFanhao
 * @Email:kfh@jusfoun.com
 * @Date: 2016年4月14日
 */
public class DriverTest {
	
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		// 設置訪問ChromeDriver的路徑
		System.setProperty("webdriver.chrome.driver",
				"C:\\Users\\admin\\AppData\\Local\\Google\\Chrome\\Application\\chromedriver.exe");
		WebDriver driver = new ChromeDriver();
		driver.get("http://www.baidu.com/");
	}
}
相關文章
相關標籤/搜索