- 浏览: 274156 次
- 性别:
- 来自: 武汉
文章分类
1.1 下载selenium2.0的lib包
http://code.google.com/p/selenium/downloads/list
官方User Guide:http://seleniumhq.org/docs/
1.2 用webdriver打开一个浏览器
我们常用的浏览器有firefox和IE两种,firefox是selenium支持得比较成熟的浏览器。但是做页面的测试,速度通常很慢,严重影响持续集成的速度,这个时候建议使用HtmlUnit,不过HtmlUnitDirver运行时是看不到界面的,对调试就不方便了。使用哪种浏览器,可以做成配置项,根据需要灵活配置。
- 打开firefox浏览器:
//Create a newinstance of the Firefox driver
WebDriver driver = newFirefoxDriver();
- 打开IE浏览器
//Create a newinstance of the Internet Explorer driver
WebDriver driver = newInternetExplorerDriver ();
- 打开HtmlUnit浏览器
//Createa new instance of the Internet Explorer driver
WebDriverdriver = new HtmlUnitDriver();
1.3 打开测试页面
对页面对测试,首先要打开被测试页面的地址(如:http://www.google.com),web driver 提供的get方法可以打开一个页面:
// And now use thedriver to visit Google
driver.get("http://www.google.com");
1.4 如何找到页面元素
Webdriver的findElement方法可以用来找到页面的某个元素,最常用的方法是用id和name查找。
假设页面写成这样:
<input type="text" name="passwd"id="passwd-id" />
那么可以这样找到页面的元素:
通过id查找:
WebElement element = driver.findElement(By.id("passwd-id"));
或通过name查找:
WebElement element = driver.findElement(By.name("passwd"));
或通过xpath查找:
WebElement element =driver.findElement(By.xpath("//input[@id='passwd-id']"));
但页面的元素经常在找的时候因为出现得慢而找不到,建议是在查找的时候等一个时间间隔。
1.5 如何对页面元素进行操作
找到页面元素后,怎样对页面进行操作呢?我们可以根据不同的类型的元素来进行一一说明。
1.5.1 输入框(text field or textarea)
找到输入框元素:
WebElement element = driver.findElement(By.id("passwd-id"));
在输入框中输入内容:
element.sendKeys(“test”);
将输入框清空:
element.clear();
获取输入框的文本内容:
element.getText();
1.5.2下拉选择框(Select)
找到下拉选择框的元素:
Select select = new Select(driver.findElement(By.id("select")));
选择对应的选择项:
select.selectByVisibleText(“mediaAgencyA”);
或
select.selectByValue(“MA_ID_001”);
不选择对应的选择项:
select.deselectAll();
select.deselectByValue(“MA_ID_001”);
select.deselectByVisibleText(“mediaAgencyA”);
或者获取选择项的值:
select.getAllSelectedOptions();
select.getFirstSelectedOption();
1.5.3单选项(Radio Button)
找到单选框元素:
WebElement bookMode =driver.findElement(By.id("BookMode"));
选择某个单选项:
bookMode.click();
清空某个单选项:
bookMode.clear();
判断某个单选项是否已经被选择:
bookMode.isSelected();
1.5.4多选项(checkbox)
多选项的操作和单选的差不多:
WebElement checkbox = driver.findElement(By.id("myCheckbox."));
checkbox.click();
checkbox.clear();
checkbox.isSelected();
checkbox.isEnabled();
1.5.5按钮(button)
找到按钮元素:
WebElement saveButton = driver.findElement(By.id("save"));
点击按钮:
saveButton.click();
判断按钮是否enable:
saveButton.isEnabled ();
1.5.6左右选择框
也就是左边是可供选择项,选择后移动到右边的框中,反之亦然。例如:
Select lang = new Select(driver.findElement(By.id("languages")));
lang.selectByVisibleText(“English”);
WebElement addLanguage =driver.findElement(By.id("addButton"));
addLanguage.click();
1.5.7弹出对话框(Popup dialogs)
Alert alert = driver.switchTo().alert();
alert.accept();
alert.dismiss();
alert.getText();
1.5.8表单(Form)
Form中的元素的操作和其它的元素操作一样,对元素操作完成后对表单的提交可以:
WebElement approve = driver.findElement(By.id("approve"));
approve.click();
或
approve.submit();//只适合于表单的提交
1.5.9上传文件
上传文件的元素操作:
WebElement adFileUpload =driver.findElement(By.id("WAP-upload"));
String filePath = "C:\test\\uploadfile\\media_ads\\test.jpg";
adFileUpload.sendKeys(filePath);
1.6 Windows 和 Frames之间的切换
一般来说,登录后建议是先:
driver.switchTo().defaultContent();
切换到某个frame:
driver.switchTo().frame("leftFrame");
从一个frame切换到另一个frame:
driver.switchTo().frame("mainFrame");
切换到某个window:
driver.switchTo().window("windowName");
1.7 调用Java Script
Web driver对Java Script的调用是通过JavascriptExecutor来实现的,例如:
JavascriptExecutor js = (JavascriptExecutor) driver;
js.executeScript("(function(){inventoryGridMgr.setTableFieldValue('"+ inventoryId + "','" + fieldName + "','"
+ value + "');})()");
1.8 页面等待
页面的操作比较慢,通常需要等待一段时间,页面元素才出现,但webdriver没有提供现成的方法,需要自己写。
等一段时间再对页面元素进行操作:
public void waitForPageToLoad(longtime) {
try {
Thread.sleep(time);
} catch (Exceptione) {
}
}
在找WebElement的时候等待:
public WebElementwaitFindElement(By by) {
returnwaitFindElement(by, Long.parseLong(CommonConstant.GUI_FIND_ELEMENT_TIMEOUT),Long
.parseLong(CommonConstant.GUI_FIND_ELEMENT_INTERVAL));
}
public WebElementwaitFindElement(By by, long timeout, long interval) {
long start = System.currentTimeMillis();
while (true) {
try {
return driver.findElement(by);
} catch(NoSuchElementException nse) {
if (System.currentTimeMillis()- start >= timeout) {
throw newError("Timeout reached and element[" + by + "]not found");
} else {
try {
synchronized(this) {
wait(interval);
}
} catch(InterruptedException e) {
e.printStackTrace();
}
}
}
}
}
1.9 在selenium2.0中使用selenium1.0的API
Selenium2.0中使用WeDriver API对页面进行操作,它最大的优点是不需要安装一个selenium server就可以运行,但是对页面进行操作不如selenium1.0的Selenium RC API那么方便。Selenium2.0提供了使用Selenium RC API的方法:
// You may use any WebDriver implementation. Firefox is used hereas an example
WebDriver driver = new FirefoxDriver();
// A "base url", used by selenium to resolve relativeURLs
String baseUrl ="http://www.google.com";
// Create the Selenium implementation
Selenium selenium = new WebDriverBackedSelenium(driver, baseUrl);
// Perform actions with selenium
selenium.open("http://www.google.com");
selenium.type("name=q", "cheese");
selenium.click("name=btnG");
// Get the underlying WebDriver implementation back. This willrefer to the
// same WebDriver instance as the "driver" variableabove.
WebDriver driverInstance = ((WebDriverBackedSelenium)selenium).getUnderlyingWebDriver();
//Finally, close thebrowser. Call stop on the WebDriverBackedSelenium instance
//instead of callingdriver.quit(). Otherwise, the JVM will continue running after
//the browser has beenclosed.
selenium.stop();
我分别使用WebDriver API和SeleniumRC API写了一个Login的脚本,很明显,后者的操作更加简单明了。
WebDriver API写的Login脚本:
public void login() {
driver.switchTo().defaultContent();
driver.switchTo().frame("mainFrame");
WebElement eUsername= waitFindElement(By.id("username"));
eUsername.sendKeys(manager@ericsson.com);
WebElement ePassword= waitFindElement(By.id("password"));
ePassword.sendKeys(manager);
WebElementeLoginButton = waitFindElement(By.id("loginButton"));
eLoginButton.click();
}
SeleniumRC API写的Login脚本:
public void login() {
selenium.selectFrame("relative=top");
selenium.selectFrame("mainFrame");
selenium.type("username","manager@ericsson.com");
selenium.type("password","manager");
selenium.click("loginButton");
}
发表评论
-
自动化测试遇到的一些问题
2013-07-11 12:43 8541, 页面上的checkbox 上执行click来勾选,结果出 ... -
敏捷开发与敏捷测试
2013-06-18 16:47 1013敏捷开发 是一种以人为 ... -
(二) robot framework - variable file
2013-06-18 10:21 7413一,文件中创建variable的两种方式 1) 直接创建: 例 ... -
(一)Robot Framework的安装与卸载
2013-06-17 16:40 14104序言 关于robot framework (RF) 2.7+版 ... -
自动化测试应该在什么阶段进行?(转)
2013-05-21 13:05 1845软件自动化测试,作为 ... -
简单使用Selenium Grid
2013-01-22 16:59 39541, 启动hub(机器X) Hub作为中央节点,他将接收所有的 ... -
Selenium 2 跑safari浏览器 (在windows XP系统上)
2013-01-21 16:38 31441,配置环境(什么装JDK,ECLIPSE,SELENIUM, ... -
我常用的的处理模态窗口的方法(selenium 2)
2013-01-04 15:44 5809主要思想: 使用Java Robot模拟键盘的回车 来替代 s ... -
selenium + python 环境安装(转)
2012-12-16 04:07 12964安装程序 python-2.7.2.msi,python安装 ... -
Selenium 处理 modal 对话框(转)
2012-11-16 17:27 3594Selenium目前没有提供对IE模态对话框(即通过showM ... -
xpath再学习(持续更新中)
2012-06-19 17:52 1488目标XML代码: <?xml version=" ... -
自动化测试规范(转)
2012-06-17 10:05 1186测试用例名同测试用例的编号。 每个测试用例粒度 ... -
hudson编码问题
2012-06-10 10:54 1382现象1:在系统设置中提示:Your container doe ... -
关于Selenium 使用CSS定位的好教程
2012-01-30 17:36 1804Selenium Tips: CSS Selectors in ... -
selenium支持的浏览器列表
2011-11-15 15:15 1534Supported browsers include: *f ... -
Selenium 的SeleneseTestBase和SeleneseTestCase
2011-11-10 13:21 23612个api的区别:SeleneseTestCase 和 Sel ...
相关推荐
### Appium + Selenium 2 入门:详细解析 #### 一、Selenium 2 全面解析 **Selenium 2** 是一种强大的工具,它整合了 **Selenium 1** 和 **WebDriver** 的最佳特性,使得在多个浏览器中进行 Web 应用程序的端到端...
### Selenium2初学者快速入门详解 #### 一、引言 随着软件开发的快速发展和规模的不断增大,传统的手动测试方式越来越难以满足高效且频繁的测试需求。为了解决这一问题,自动化测试成为了软件测试领域的重要发展...
cd D:\selenium快速入门示例 D: set JAVA_HOME=E:\tools\java\jdk1.8.0_181x64 set PATH=%JAVA_HOME%\bin;%PATH% javac -encoding utf-8 -Djava.ext.dirs=. SogouTest1.java java -Djava.ext.dirs=. SogouTest1 ...
昨天群里有朋友问我selenium入门例子,我今天抽了点时间写了一段简单的代码,此代码适合刚刚学习selenium的人员参考,此代码是selenium2 RC 调用chrome driver访问百度,输入Jack_test 搜索. 代码里面含资源包:selenium...
Selenium是一个由ThoughtWorks公司开发的开源Web应用程序自动化测试工具系列,主要分为Selenium-IDE、Selenium-RC、Selenium-WebDriver和Selenium-Grid四个部分。Selenium的使用可以覆盖从简单的浏览器操作到复杂的...
在了解Selenium作为自动化测试工具的入门过程中,我们首先需要掌握几个关键知识点。首先是Selenium与QTP(Quick Test Professional)的对比。QTP是一款较为强大的自动化测试工具,但它的复杂性和对Windows窗口的操作...
### Selenium2初学者快速入门(Java) #### 一、引言 随着软件开发规模的不断扩大,测试成为确保软件质量不可或缺的一环。面对大量的重复性测试任务,自动化测试逐渐成为业界的首选方案。Selenium作为一款优秀的开源...
Selenium:SeleniumIDE入门与实践.docx
Selenium基础入门
### Selenium2初学者快速入门(Java版):详解与实战指南 #### 一、引言 随着软件开发行业的快速发展,自动化测试已经成为确保软件质量的重要手段之一。传统的手工测试方法不仅耗时费力,而且难以应对日益复杂的...
### Selenium新手入门必看知识点详解 #### 一、Selenium简介与重要性 Selenium 是一个强大的自动化测试工具集,广泛应用于Web应用的功能性测试。它支持多种浏览器(如Chrome、Firefox等)以及多种编程语言(包括...
基于Selenium 2的自动化测试 从入门到精通PDF电子书下载
基于Selenium 2的自动化测试 从入门到精通PDF电子书下载 带书
selenium入门.pptSelenium是ThroughtWorks公司的开源Web功能测试工具系列
**Selenium 快速入门及常用API** Selenium是一款强大的Web自动化测试工具,它允许开发者模拟用户行为,对网页进行各种操作,如点击、输入、导航等,从而进行功能测试和性能测试。本文将深入介绍Selenium的快速入门...
本套学习资料专为想要入门Selenium的Java开发人员设计,涵盖了从基础到中级的全方位知识,旨在帮助学习者快速掌握Selenium的核心概念和技术。 首先,Selenium的核心组件包括Selenium WebDriver,它是一个API,允许...
selenium2从入门到精通书籍,提供selenium初学者学习的基础知识。