1 准备工作
- JDK:这里使用JDK6
- Eclipse:这里使用kepler
- Selenium:这里使用2.44.0版本
- Firefox:这里使用35.0版本
注意:32位系统选择32位JDK和32位Eclipse;64位系统选择64位JDK和64位Eclipse
2 设置环境变量
PATH中加入:C:\Java\jdk1.6.0_45\bin
3 Selenium测试
- 新建JAVA工程
- 将Selenium的jar包放入工程libs文件夹内
- 将Selenium的jar包加载到工程中(普通java工程需要加载selenium-server-standalone-2.44.0.jar包)
- 编写测试代码
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(); //关闭浏览器 } }
时间: 2024-10-13 22:24:04