Selenium使用介绍

 Selenium 是 thoughtworks公司的一个集成测试的强大工具。最近参与了一个系统移植的项目,正好用到这个工具,

  把一些使用心得分享给大家,希望大家能多多使用这样的强大的,免费的工具,来保证我们的质量。

  Selenium 的文档现存的不少,不过都太简单了。使用Selenium的时候,我更多的是直接去看API文档,好在API不错,

  一个一个看,就能找到所需要的 🙂   官方网站:http://www.openqa.org/selenium/

  好,下面进入正题!

  一、Selenium 的版本

  Selenium 现在存在2个版本,一个叫 selenium-core, 一个叫selenium-rc 。

  selenium-core 是使用HTML的方式来编写测试脚本,你也可以使用 Selenium-IDE来录制脚本,但是目前Selenium-IDE只有 FireFox 版本。

  Selenium-RC 是 selenium-remote control 缩写,是使用具体的语言来编写测试类。

  selenium-rc 支持的语言非常多,这里我们着重关注java的方式。这里讲的也主要是 selenium-rc,因为个人还是喜欢这种方式 🙂

  二、一些准备工作

  1、当然是下载 selenium 了,到http://www.openqa.org/selenium/下载就可以了,记得选择selenium-rc 的版本。

  2、学习一下 xpath 的知识。有个教程:http://www.zvon.org/xxl/XPathTutorial/General_chi/examples.html

  一定要学习这个,不然你根本看不懂下面的内容!

  3、安装 jdk1.5

  三、selenium-rc 一些使用方法

  在 selenium-remote-control-0.9.0\server 目录里,我们运行 java -jar selenium-server.jar。

  之后你就会看到一些启动信息。要使用 selenium-rc ,启动这个server 是必须的。

  当然,启动的时候有许多参数,这些用法可以在网站里看看教程,不过不加参数也已经足够了。

  selenium server 启动完毕了,那么我们就可以开始编写测试类了!

  我们先有个概念,selenium 是模仿浏览器的行为的,当你运行测试类的时候,你就会发现selenium 会打开一个

  浏览器,然后浏览器执行你的操作。

  好吧,首先生成我们的测试类:

   1. public class TestPage2 extends TestCase {  
   2.   private Selenium selenium;  
   3.  
   4.   protected void setUp() throws Exception {  
   5.      String url = “http://xxx.xxx.xxx.xxx/yyy”;  
   6.      selenium = new DefaultSelenium("localhost", SeleniumServer.getDefaultPort  
   7.                                 (), "*iexplore", url);  
   8.      selenium.start();  
   9.               
  10.      super.setUp();                       
  11.           
  12.   }  
  13.  
  14.   protected void tearDown() throws Exception {  
  15.           
  16.       selenium.stop();  
  17.       super.tearDown();  
  18.               
  19.  
  20.   }  
  21.  
  22. } 

  代码十分简单,作用就是初始化一个 Selenium 对象。其中:

  url : 就是你要测试的网站

  localhost:  可以不是localhost,但是必须是 selenium server 启动的地址

  *iexplore :  可以是其它浏览器类型,可以在网站上看都支持哪些。

  下面我就要讲讲怎么使用selenium 这个对象来进行测试。

 1、测试文本输入框

  假设页面上有一个文本输入框,我们要测试的内容是 在其中输入一些内容,然后点击一个按钮,看看页面的是否跳转到需要的页面。

   1. public void test1() {   
   2.            
   3.     selenium.open("http://xxx.xxx.xxx/yyy");   
   4.            
   5.     selenium.type("xpath=//input[@name='userID']", "test-user");   
   6.     selenium.click("xpath=//input[@type='button']");   
   7.     selenium.waitForPageToLoad("2000");   
   8.     assertEquals(selenium.getTitle(), "Welcome");   
   9. } 

  上面的代码是这个意思:

  1)调用 selenium.open 方法,浏览器会打开相应的页面

  2)使用 type 方法来给输入框输入文字

  3)等待页面载入

  4)看看新的页面标题是不是我们想要的。

  2、测试下拉框

   1. public void test1() {       
   2.                
   3.     selenium.open("http://xxx.xxx.xxx/yyy");       
   4.                
   5.     selenium.select("xpath=//SELECT[@name='SBBUSYO']", "index=1");   
   6.     selenium.click("xpath=//input[@type='button']");       
   7.     selenium.waitForPageToLoad("2000");       
   8.     assertEquals(selenium.getTitle(), "Welcome");       
   9. }    

  可以看到,我们可以使用 select 方法来确定选择下拉框中的哪个选项。

  select 方法还有很多用法,具体去看看文档吧。

  3、测试check box

   1. public void test1() {           
   2.                    
   3.     selenium.open("http://xxx.xxx.xxx/yyy");           
   4.                    
   5.     selenium.check("xpath=//input[@name='MEICK_000']");     
   6.     selenium.click("xpath=//input[@type='button']");           
   7.     selenium.waitForPageToLoad("2000");           
   8.     assertEquals(selenium.getTitle(), "Welcome");           
   9. }     

  我们可以使用 check 方法来确定选择哪个radio button。

 4、得到文本框里的文字

  1. assertEquals(selenium.getValue("xpath=//input[@name='WNO']"), "1");

  getValue 方法就是得到文本框里的数值,可不是 getText 方法,用错了可就郁闷了。

  5、判断页面是否存在一个元素

  1. assertTrue(selenium.isElementPresent("xpath=//input[@name='MEICK_000']"));

  一般这个是用来测试当删除一些数据后,页面上有些东西就不会显示的情况。

  6、判断下拉框里选择了哪个选项

  1. assertEquals(selenium.getSelectedIndex("xpath=//SELECT[@name='HATIMING']"), "1");

  这个可以用来判断下拉框显示的选项是否是期望的选项。

  7、如果有 alert 弹出对话框怎么办?

  这个问题弄了挺长时间,可以这样来关闭弹出的对跨框:

  1. if(selenium.isAlertPresent()) {

  2.

  3.    selenium.getAlert();

  4.

  5. }

  其实当调用 selenium.getAlert() 时,就会关闭 alert 弹出的对话框。

  也可以使用 System.out.println(selenium.getAlert()) 来查看对跨框显示的信息。

  在测试的时候,有的人会显示许多alert 来查看运行时的数据,那么我们可以用下面的方式来关闭那些 alert:

  1. while(selenium.isAlertPresent()) {

  2.

  3.    selenium.getAlert();

  4.

  5. }

  8、如何测试一些错误消息的显示?

  1. assertTrue(selenium.getBodyText().indexOf("错误消息")>=0);

  切记: getBodyText 返回的时浏览器页面上的文字,不回包含html 代码的,如果要显示html 代码,用下面这个:

  1. System.out.println(selenium.getHtmlSource());

  以上就是最常用的几个方法了,例如 click, type, getValue 等等。

  还有就是一定要学习 xpath, 其实xpath 也可以有“与、或、非”的操作:

  1. selenium.check("xpath=//input[(@name='KNYKBN')and(@value='Y')]");

  四、其他

  selenium 还有更多的用法,例如弹出页面等等。当面对没见过的测试要求时,我最笨的方法就是按照api文档一个一个找,

  好在不多,肯定能找到。

相关阅读:

Web测试工具Selenium入门心得

使用Selenium进行验收测试

Selenium 命令列表

selenium参考手册中文翻译

用 Selenium 自动化验收测试(一)

Posted in 使用说明.