本帖最后由 太鼓达人 于 2019-1-25 14:07 编辑
Selenium是ThrougthWorks公司一个强大的开源WEB功能测试工具系列,本系统包括多款软件
Selenium语言简单,用(Command,target,value)三种元素组成一个行为,并且有协助录制脚本工具,但Selenese有一些严格的限制:
它没有条件(没有"if"表达式),并且它没有循环(没有“for“表达式),使编写复杂的测试变得困难甚至不可能。 经过比较:使用Selenium IDE,XPath Checker进行测试案例的编写,然后转换为JAVA语言的测试案例,再调用Selenium RC运行测试案例。
Selenium工具及比较
Selenium分为:
- Selenium Core: 支持DHTML的测试案例(效果类似数据驱动测试),它是Selenium IDE和Selenium RC的引擎
- Selenium IDE: Firefox的一个插件,支持脚本录制、编辑、回放
- Selenium RC: Selenium Remote Control Selenium alone server
- Selenium Grid: 允许同时并发地、在不同的环境上运行多个测试任务,极大的地加快WEB应用的功能测试
- Selenium Core HTA: Selenium Core的额外模式,只要Selenium Core配置稍加修改,即为HTA模式,可以在IE最高安全等级(特权)下工作,即它仅能在IE下工作,限制很大。
Selenium WEBDRIVER 浏览器支持:
- Selenium IDE仅可以在firefox中工作,
- Selenium RC(Remote Control)支持很多浏览器,如最常用的firefox、ie、safari等浏览器
- Selenium Core支持的浏览器是最广的,这点和它的实现有关,作为IDE和RC的引擎,Selenium Core几乎可以在任何浏览器中工作
需要远程安装
只有Selenium Core需要,Selenium Core出于同源策略的原因,需要在被测试的服务端安装,这也是它一个很大的限制。
而Selenium IDE和Selenium Core HTA不会被同源策略所限制,因为他们对浏览器扩展了。
Selenium RC提供一个代码服务器来保证Selenium JS文件看似来自相同的远程服务器,从而符合同源策略;代理服务器欺骗浏览器,让它认为
这里的确有像http://www.google.com/selenium/这样的目录 支持HTTPS/SSL
都支持。
支持跨域
除Selenium Core外都支持
需要JAVA:
准确的说是需要JRE
只有Selenium RC需要,上面所说的“代理服务器”是一个JAVA程序,需要跑测试案例前启动。
将测试结果保存到磁盘:
只有Selenium Core不能将任何测试结果写到磁盘(因为它是用javascript写的,它不允许向磁盘写数据)。
其解决方案是当然你可以将测试结果发送到另外一台服务器保存。是Selenium Core的一大限制
多语言支持:
- Selenium IDE,Selenium Core,Selenium CoreHTA只支持Selenium语言
- Selenium RC支持很多语言,如c#,java ,ruby,python
在firefox安装插件
在firefox中安装插件Selenium IDE
1:打开firefox浏览器
2:在地址栏输入http://docs.seleniumhq.org/download/
3:在页面中找到Selenium IDE,然后点击Download latest released version 1.10.0 的链接,即可以自动安装此插件
Selenium IDE仅仅支持Selenium语言,但可以通过此插件录制、编辑和回放Selenium测试,并可以转换了其他语言的测试用例,如JAVA,C#
但仅可以在firefox中工作
在firefox安装XPath Checker插件
1:打开firefox浏览器
2:点击工具-附加组件,打开附加组件管理器
3:在搜索框中输入XPath Checker,
4: 找到XPath Checker,点击安装(当前版本是0.4.4)
作用:
给出页面元素的XPath
根据你写的XPath,查看是否可以找到对应的element
可选择的安装其他插件
如Firebug1.11.1,Selenium IDE Button1.2.0
Selenium IDE Button1.2.0作用:
启动Selenium IDE的快捷按钮 下载Selenium工具
下载Selenium Server
The Selenium Server is needed in order to run either Selenium RC style scripts or Remote Selenium Webdriver ones.
The 2.x server is a drop-in replacement for the old Selenium RC server
and is designed to be backwards compatible with your existing infrastructure. 下载后放到指定目录,
如D:\Program
d:
cd Program
java -jar selenium-server-standalone-2.30.0.jar
即可启动selenium服务端
默认端口是4444
下载Selenium Client & WebDriver Language Bindings
如果使用maven,不用单独下载,可以使用maven下载jar及其依赖的jar,配置如下:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.30.0</version>
</dependency>
Selenium RC的工作原理:
Selenium RC主要由两部分组成:
负责控制浏览器行为,总的来说,Selenium Server主要包括3个部分,Launcher,Http Proxy,Selenium Core
其中Selenium Core是被Selenium Server嵌入到浏览器页面中的,其实就是一堆S函数的集合,就是通过这些JS
函数,才可以实现用程序对浏览器进行操作。
写测试案例时用来控制Selenium Server的库。
Selenium RC与Testcase的关系
1:测试案例(Testcase)通过Client Lib的接口向Selenium Server发送Http请求,要求和Selenium Server建立连接
Selenium Server是一个独立的中间服务器(确切地说是代理服务器),可以架设在其他机器上。所以测试案
例通过HTTP请求去控制Selenium Server是很正常的。
2:Selenium Server的Launcher启动浏览器,把Selenium Core加载入浏览器页面当中,并把浏览器的代理设置为
Selenium Server的Http Proxy
3:测试案例通过Client Lib的接口向Selenium Server发送HTTP请求,Selenium Server对请求进行解析,然后通过
Http Proxy发送JS命令通知Selenium Core执行操作浏览器的动作
4:Selenium Core接收到指令后,执行操作。
5:浏览器收到新的页面请求信息(因为在(4)中,Selenium Core的操作可能引发新的页面请求),于是发送http请求,
请求新的WEB页面
由于Selenium Server在启动浏览器时做了手脚,所以Selenium Server会接收到所有由它启动的浏览器发送的请求
6:Selenium Server接收到浏览器的发送的HTTP请求后,自己重组HTTP请求,获取对应的WEB页面
7:Selenium Server的HTTP PROXY把接收到的WEB页面返回给浏览器。
为什么Selenium RC中的Selenium Server需要以这种代理服务器的形式存在
这和浏览器的同源策略(the same origin policy)有关 同源策略是由netscape提出的一个著名的安全策略,现在所有的可支持javascript的浏览器都使用使用这个策略。 所谓同源,就是指域名、协议、端口相同,同源策略就是浏览器仅会执行同源的javascript脚本 Selenium Core是一堆JS脚本,需要加载到浏览器中执行,Selenium Core的JS脚本的“源”是localhost,所以浏览器会阻止Selenium Core的JS脚本
在测试页面上执行。所以用Selenium Core进行测试,需要把Selenium Core安装到远程服务器上。
Selenium Server的交互模式
在启动Selenium Server的时候,加入-interactive,即可开启交互模式,
是Selenium Server提供了一种快速的测试方法,可以对Selenium输入命令从而启动测试
java -jar selenium-server-standalone-2.30.0.jar -interactive
在命令行输入: *iehta or *chrome or *iexplore or *firefox
1:控制Selenium Server启动浏览器,以及创建Session,输入:
cmd=getNewBrowserSession&1=*iexplore&2=http://www.google.com.hk cmd=getNewBrowserSession&1=*firefox&2=http://www.google.com.hk 2:控制浏览器访问www.google.com.hk/webhp,输入(sessionId是第一步产生的):
cmd=open&1=http://www.google.com.hk/webhp&SessionId=6600231a2c504abd8293d4c47d32e857 如果再输入
cmd=open&1=http://www.baidu.com&SessionId=6600231a2c504abd8293d4c47d32e857,则会给出警告,见总结中的第4点 此时,浏览器可以成功访问http://www.google.com.hk/webhp
总结一下:
1:在Selenium Server中输入命令的格式为:
cmd=Command&1=Target&2=value&SessionId=...
这和Selenium IDE的案例语句很像
2:在输入命令后,Selenium Server会发一条Http请求给自己,请求的URL格式也是固定的:
http://localhost:4444/selenium-server/driver?cmd=Command&1=Target&2=value&SessionId=...
我们完全可以用浏览器发送控制Selenium Server请求进行测试
3:另外,SessionId是很重要的一个参数,当一个Selenium Server同时运行多个测试案例时,Selenium Server就是通过
sessionId判断到底该操作哪个浏览器窗口,而在下面的java代码中:
selenium = new DefaultSelenium("127.0.0.1", 4444, "*iexplore",
"http://www.google.com.hk");
selenium.start();
selenium.open("/webhp");
selenium就相当于上文中的sessionId
4:在Selenium Server启动一个Session时,必须指定一个“源”,在上面的代码中http://www.google.com.hk就是“源”,
在后来的操作中,如果找开的却是http://www.baidu.com,由于二者非同源,所以接下来的操作就可能出现各种问题,
所以Selenium Server会给出以下警告
11:55:09.321 WARN - you appear to be changing domains from http://www.google.com.hk to http://www.baidu.com
this may lead to a 'Permission denied' from the browser (unless it is running as*iehta or *chrome,
or alternatively the selenium server is running in proxy injection mode) Selenium Server提示说:如果测试案例是运行在*iehta或者*chrome上,或者改变Selenium Server的运行模式为
injection mode即可避免问题出现。
|