对于Selenium这种网络爬虫或者环境搭建方面的东西小编只能说是从入门到放弃啦,不过既然你搜到了Selenium测试环境怎么搭建这款文章那就为你准备一下初级的Selenium测试环境搭建方式吧,当然这时候我们还得需要这款selenium python最新版才可以。
准备工作
Selenium:这里使用2.44.0版本
Firefox:这里使用35.0版本
注意:32位系统选择32位JDK和32位Eclipse;64位系统选择64位JDK和64位Eclipse
PATH中加入:C:\Java\jdk1.6.0_45\bin
3 Selenium测试
新建JAVA工程
将Selenium的jar包放入工程libs文件夹内
将Selenium的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(); //关闭浏览器
}
}