Selenium是ThroughtWorks公司开发的一套Web自动化测试工具。
它分为三个组件:
- Selenium IDE
- Selenium RC (Remote Control)
- Selenium Webdriver
Selenium IDE是firefox的一个插件,允许测试人员录制脚本并回放。
Selenium RC和Selenium Webdriver是测试框架,提供多种语言的API。不同的是,Selenium Webdriver以一种更底层、更灵活的方式来操作浏览器,并不仅仅使用javascript。这样它可以绕开浏览器的沙箱限制,实现Selenium RC不支持的框架、弹出窗口、页面导航、下拉菜单、基于AJAX的UI元素等控件的操作。以及,Selenium Webdriver不需要本地服务器。
Selenium 1.x版本只包含前两个组件。从2.0开始Webdriver加入其中。
准备工作
由于本篇教程用Java做示范,所以请先安装JDK并配置好环境变量。
到官网下载库文件selenium-java-2.xx.x.zip
,如果官网被墙了就到CSDN去找。打开压缩包,selenium-java-2.25.0.jar
的库文件,需要导入到项目中;selenium-java-2.25.0-srcs.jar
是源码,里面是一些*.java文件;lib
文件夹里面是依赖包,也要一起导入到项目中。
除了firefox浏览器,其它浏览器基本都需要驱动,同样请到官网下载。
浏览器操作
打开浏览器
打开默认路径的firefox
1 | WebDriver driver = new FirefoxDriver(); |
打开指定路径的firefox
1 | System.serProperty("webdriver. firefox.bin", |
或者
1 | File pathToFirefoxBinary |
打开ie(需要驱动)
1 | System.setProperty("webdriver.ie.driver", "...\\IEDriverServer.exe") |
打开chrome(需要驱动)
1 | System.setProperty("webdriver.chrome.driver", "...\\chromedriver.exe" ); |
打开URL
用get方法
1 | driver.get("http://www.51.com"); |
或者用navigate方法,然后再调用to方法
1 | driver.navigate().to("http://www.51.com"); |
关闭浏览器
用quit方法
1 | driver.quit(); |
或者用close方法
1 | driver.close(); |
返回当前页面url和title
得到title
1 | String title = driver.getTitle(); |
得到当前页面url
1 | String currentUrl = driver.getCurrentUrl(); |
输出title和currenturl
1 | System.out.println(title+"\n"+currentUrl); |
其他方法
getWindowHandle()
返回当前的浏览器的窗口句柄getWindowHandles()
返回当前的浏览器的所有窗口句柄getPageSource()
返回当前页面的源码
对浏览器的支持
HtmlUnit Driver
优点:HtmlUnit Driver不会实际打开浏览器,运行速度很快。对于用FireFox等浏览器来做测试的自动化测试用例,运行速度通常很慢,HtmlUnit Driver无疑是可以很好地解决这个问题。
缺点:它对JavaScript的支持不够好,当页面上有复杂JavaScript时,经常会捕获不到页面元素。
使用:
1 | WebDriver driver = new HtmlUnitDriver(); |
FireFox Driver
优点:FireFox Dirver对页面的自动化测试支持得比较好,很直观地模拟页面的操作,对JavaScript的支持也非常完善,基本上页面上做的所有操作FireFox Driver都可以模拟。
缺点:启动很慢,运行也比较慢,不过,启动之后Webdriver的操作速度虽然不快但还是可以接受的,建议不要频繁启停FireFox Driver。
使用:
1 | WebDriver driver = new FirefoxDriver(); |
Firefox profile的属性值是可以改变的,比如我们平时使用得非常频繁的改变useragent的功能,可以这样修改:
1 | FirefoxProfile profile = new FirefoxProfile(); |
InternetExplorer Driver
优点:直观地模拟用户的实际操作,对JavaScript提供完善的支持。
缺点:是所有浏览器中运行速度最慢的,并且只能在Windows下运行,对CSS以及XPATH的支持也不够好。
使用:
1 | WebDriver driver = new InternetExplorerDriver(); |
选择器
By ID
页面:
1 | <input type="text" name="passwd" id="passwd-id" /> |
代码:
1 | WebElement element = driver.findElement(By.id("passwd-id")); |
By Name
页面同上
代码:
1 | WebElement e = dr.findElement(By.name("passport_51_user")); |
By XPATH
1 | WebElement element |
By Class Name
页面:
1 | <div class="cheese"> |
代码:
1 | List<WebElement> cheeses |
By Link Text
页面:
1 | <a href="http://www.google.com/search?q=cheese">cheese</a> |
代码:
1 | WebElement cheese = driver.findElement(By.linkText("cheese")); |
控件操作
输入框
1 | WebElement element = driver.findElement(By.id("passwd-id")); |
单选框
1 | WebElement radio = driver.findElement(By.id("BookMode")); |
多选框
1 | WebElement checkbox = driver.findElement(By.id("myCheckbox")); |
按钮
1 | WebElement saveButton = driver.findElement(By.id("save")); |
左右选择框
也就是左边是可供选择项,选择后移动到右边的框中,反之亦然。例如:
1 | Select lang = new Select(driver.findElement(By.id("languages"))); |
表单
1 | WebElement approve = driver.findElement(By.id("approve")); |
文件上传
1 | WebElement adFileUpload = driver.findElement(By.id("WAP-upload")); |
高级控件
取多个对象
findElements()方法可以返回一个符合条件的元素List组,例如:
1 | List<WebElement> elements = driver.findElements(By.tagName("input")); |
层级定位
不方便定位某元素时,可以先定位其父元素,再取父元素的子元素:
1 | WebElement element = driver.findElements(By.className("login")); |
iframe
网页:
1 | <html> |
frame.html:
1 | <html> |
代码:
1 | //在default content定位id="id1"的div |
弹出窗口
1 | //得到当前窗口的句柄 |
alert、confirm、prompt
getText()
得到它的文本值accept()
相当于点击它的”确认”dismiss()
相当于点击”取消”或者叉掉对话框sendKeys()
输入值
1 | Alert alert = dr.switchTo().alert(); |
1 | Alert confirm = dr.switchTo().alert(); |
1 | Alert prompt = dr.switchTo().alert(); |
下拉框
页面:
1 | <div id="car-menu"> |
代码:
1 | Select selectCar = new Select(dr.findElement(By.name("cars"))); |
拖放元素
1 | WebElement ele = dr.findElement(By.id("item1")); |
表格
下面这个实例按照原顺序输出表格中的内容:
1 | WebElement table = driver.findElement(By.id("my-table")); |
Cookies
1 | // 增加一个name = "name",value="value"的cookie |
等待
明确等待
假设被测页面实现了这样的一种效果:点击click按钮4秒钟后,页面上会出现一个蓝色的div块。需要写一段自动化脚本去捕获这个出现的div,然后高亮它。
1 | WebDriverWait wait = new WebDriverWait(dr, 10); |
代码WebDriverWait类的构造方法接受了一个WebDriver对象和一个等待最长时间(10秒)。然后调用until方法,其中重写了ExpectedCondition接口中的apply方法,让其返回一个WebElement,即加载完成的元素。默认情况下,WebDriverWait每500毫秒调用一次ExpectedCondition,直到有成功的返回,当然如果超过设定的值还没有成功的返回,将抛出异常。
隐性等待
隐性等待是指当要查找元素,而这个元素没有马上出现时,告诉WebDriver查询Dom一定时间。默认值是0,但是设置之后,这个时间将在WebDriver对象实例整个生命周期都起作用。
上面的代码可改为如下代码:
1 | // 设置10秒 |
截图
1 | // 这里等待页面加载完成 |
鼠标键盘模拟
单一操作
1 | //新建一个action |
组合操作
1 | (new Actions(dr)).dragAndDrop(dr.findElement(By.id(item)), target).perform(); |
其他鼠标或键盘操作方法可以具体看一下API里面的org.openqa.selenium.interactions.Actions
类。
其它
firefox代理
1 | String PROXY = "localhost:8080";//如果不是本机,localhost替换成IP地址 |
启用firefox禁用的功能
1 | FirefoxProfile profile = new FirefoxProfile(); |
临时指定插件
有时需要临时让启动的firefox带一个插件,如firebug,来定位问题等。首先要下载这个插件的xpi安装包。剩下的就让selenium webdriver来完成,如下:
1 | FirefoxProfile firefoxProfile = new FirefoxProfile(); |
注
部分内容来自SE225软件测试课程课件第8章–GUI测试工具。