[图片上传失败...(image-364cb5-1525661643320)]
selenium主要组件:
- selenium-IDE:支持录像和回放的功能
- selenium-RC
下载地址:selenium-RC - selenium-Grid
此处推荐虫师的书籍:《selenium2自动测试实战–基于Python语言》
一、selenium-RC安装
- 安装selenium服务器驱动
下载链接:selenium-server-standalone-2.44.0.jar
下载链接:selenium-java-2.44.0jar包 - selenium-RC下载地址:selenium-RC下载地址
- 配置eclipes
-
打开eclipes,新建一个Java project(ps:Java配置和eclipes教程将在之后分享)
- 右击项目选择build path-link source选择刚刚下载的内容:selenium-java-2.44.0jar包如下图显示:
-
右击项目选择添加Junit----properties
-
选中导入的selenium-java-2.44.0.jar和selenium-server-standalone-2.44.0.jarr添加到项目引用,选中这两个包---->Bulid Path --->add to Bulid Path 即可
二、selenium-IDE安装
- 安装Firefox(看网上别人都推荐安装低版本的Firefox,后面我因为出现问题又重新安装了和selenium server相配的Firefox浏览器)
- 打开Firefox,选择菜单栏中的【附加组件】---搜索selenium IDE
-
选择安装稍后重启后就会在右上角出现一个icon,点击打开-如图,
三、录制脚本并导出Java脚本
-
打开selenium-IDE,点击右边的红色录制按钮,浏览器打开录制的界面(此处以百度为例)
-打开浏览器在百度输入框中输入selenium,点击搜索按钮,导出脚本:
- 导出的Java脚本在eclipes中打开并成功运行:贴出导出的代码如下显示:
import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
import java.util.regex.Pattern;
public class love {
private Selenium selenium;
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*firefox C:/Program Files (x86)/Mozilla Firefox/firefox33.0/firefox.exe", "https://www.baidu.com/");
//此处注意Firefox的路径
selenium.start();
}
@Test
public void testLove() throws Exception {
selenium.open("/");
selenium.click("id=kw");
selenium.type("id=kw", "selenium");
selenium.click("id=su");
selenium.click("link=selenium + python自动化测试环境搭建 - 虫师 - 博客园");
}
@After
public void tearDown() throws Exception {
}
}
四、部署环境中会出现各种问题,博主列下以下常见的问题以及解决办法:
报错一:Failed to start new browser session:java.lang.RuntimeException: Firefox 3 could not be found in the path!Please add the directory containing ''firefox.exe'' to your PATH environment.
造成原因:本地的Firefox路径不一致造成的
解决办法:首先尝试将firefox.exe的路径放到系统环境变量path中,重新运行,错误依旧。
正确解决办法:在调用firefox处加上绝对路径(selenium("localhost", 4444, "*firefox D:\Program Files\Mozilla Firefox\firefox.exe", "http://www.baidu.com"))
报错二:java.lang.RuntimeException: Could not contact SeleniumServer; have you started it on 'localhost:4444' ?
造成原因:selenium server未启动
解决方案:启动selenium server:java -jar selenium-server-standalone-2.24.1.jar
自己可以新建一个bat文件,双击即可
报错三:Firefox 无法在 chrome://src/content/RemoteRunner.html?sessionId=e4a9ff6710024147858b77bf8c3b7e6c&multiWindow=true&baseUrl=https://www.google.com.hk/&debugMode=false&driverUrl=http://localhost:4444/selenium-server/driver/ 找到该文件。
造成原因:Firefox版本与selenium server版本不一致导致的。
解决办法:使用一致的版本
【Selenium】 -> 【FireFox】
2.25.0 -> 18
2.30.0 -> 19
2.31.0 -> 20
2.42.2 -> 29
2.44.0 -> 33 (不支持31,2014/12/1) 升级selenium jar包,或者是升级firefox。
此处为老版本的Firefox下载地址
注意:火狐版本经常会自动更新,记得将自动更新的勾选去掉,火狐:选项-高级-更新:不检查更新,省的下次打开自动更新了,就懵逼了O(∩_∩)O哈哈~
好啦,博主今天刚刚学习到这里了,虽然只是一个环境的搭建和一个小demo但是还是经历了重重磨难才成功的,大家也去一步步的搭建自己的平台吧,一切来于实践才理解的深刻,加油(ω)
[图片上传失败...(image-258fe-1525661643320)]