1 準備工做瀏覽器
注意:32位系統選擇32位JDK和32位Eclipse;64位系統選擇64位JDK和64位Eclipsepost
2 設置環境變量測試
PATH中加入:C:\Java\jdk1.6.0_45\binurl
3 Selenium測試 spa
package com.selenium.test; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; public class Test1 { public static void main(String args[]){ WebDriver driver = new FirefoxDriver(); //啓動火狐瀏覽器 driver.manage().window().maximize(); //最大化瀏覽器 driver.navigate().to("http://www.baidu.com/"); //導航到百度 driver.close(); //關閉瀏覽器 } }