selenium2.0 处理各种窗口问题解决方法
selenium2.0处理muti-Windows 、 Frames 、Popup Dialogs
selenium2.0处理多窗口,弹窗等,只需要调用WebDriver 嵌套类:TargetLocator(driver.switchTo.……),如下:
driver.switchTo().window("windowName");//target="windowName" ,或者 直接都是使用获取当前窗口句柄来定位
driver.switchTo().frame("frameName");
Alert alert = driver.switchTo().alert();
注:当 driver.switchTo().alert()得到alert后,就可以对alert做accept,dismiss,读alert内容,或者填写prompt,适合于alert/confirm/prompts
下面是具体实例操作代码:
package mavenSelenium; import java.util.Set; import org.openqa.selenium.By;
import org.junit.*;
import org.openqa.selenium.Alert;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.ExpectedCondition;
import org.openqa.selenium.support.ui.WebDriverWait; public class VariableWindows extends Assert { protected WebDriver driver;
@Before
public void setUp(){
driver=new FirefoxDriver();
} @Test
public void test() throws Exception{
driver.get("file:///C:/Users/jennifer.huang/Desktop/AlertConfirmPromptPage.html");
//1、操作confirm弹出框
WebElement e1=driver.findElement(By.id("btnConfirm"));
e1.click();
Alert alert11=driver.switchTo().alert();
if(!alert11.getText().contains("Choose an option.")){
fail("The confirm should contains [Choose an option.]");
}
alert11.accept();
String expectString="Confirmed";
verifyResult(expectString);//验证结果Assert.fail e1.click();
Alert alert12=driver.switchTo().alert();
alert12.dismiss();
expectString="Rejected!";
verifyResult(expectString); //2、操作Alert
WebElement e2=driver.findElement(By.id("btnAlert"));
e2.click();
Alert alert21=driver.switchTo().alert();
if(!alert21.getText().contains("I'm blocking")){
fail("Alert should conatins [I'm blocking]");
}
alert21.accept();
expectString="Alert is gone";
verifyResult(expectString); //3、操作prompt
WebElement e3=driver.findElement(By.id("btnPrompt"));
e3.click();
Alert alert31=driver.switchTo().alert();
expectString="selenium2.0";
alert31.sendKeys(expectString);
alert31.accept();
verifyResult(expectString); //4、操作新Tab
//4.1 打开新tab target="_blank"
WebElement e4=driver.findElement(By.id("linkNewWindow"));
e4.click();
changeFocus("百度一下,你就知道");
System.out.println("当前窗口title:"+driver.getTitle());
//4.2按钮打开新窗口
changeFocus("主窗口");
System.out.println("当前窗口title:"+driver.getTitle());
WebElement e5=driver.findElement(By.id("btnNewNamelessWindow"));
e5.click();
changeFocus("博客园 - 程序员的网上家园");
System.out.println("当前窗口title:"+driver.getTitle());
//4.3按钮打开新窗口
Thread.sleep(5000);
changeFocus("主窗口");
WebElement e6=driver.findElement(By.id("btnNewNamedWindow"));
e6.click();
changeFocus("博客园 - 程序员的网上家园"); //另外selenium2.0其他操作窗口语句有:
driver.get("http://www.google.com");//Load a new web page in the current browser window
driver.navigate().to("http://www.cnblogs.com/jenniferhuang/"); //和driver.get(“url”),都是新载一个页面
Thread.sleep(2000);
driver.navigate().back(); //move backwards in browser’s history:
Thread.sleep(2000);
driver.navigate().forward(); //move forwards in browser’s history: }
@After
public void tearDoown(){
driver.quit();
} /**
* 验证结果
* @param expectString
*/
public void verifyResult(String expectString){
String resultString=driver.findElement(By.id("output")).getText();
if(!resultString.contains(expectString)){
fail("Element [" + By.id("output") + "] should contains [" + expectString + "] ; but now it contains: " + resultString);
}
}
/**
* 窗口跳转, 通过title来确定要跳到哪个窗口
* @param windowTitle
*/
public void changeFocus(String windowTitle){
for(String handle:driver.getWindowHandles()){
if(driver.switchTo().window(handle).getTitle().equals(windowTitle)){
driver.switchTo().window(handle);
break;
}
}
}
上面代码所操作的 页面的源代码示例:AlertConfirmPromptPage.html
<!DOCTYPE HTML>
<html lang="zh-cn">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>主窗口</title>
<script type="text/javascript">
function output(resultText){
document.getElementById('output').childNodes[0].nodeValue=resultText;
} function show_confirm(){
var confirmation=confirm("Choose an option.");
if (confirmation==true){
output("Confirmed.");
}
else{
output("Rejected!");
}
} function show_alert(){
alert("I'm blocking!");
output("Alert is gone.");
}
function show_prompt(){
var response = prompt("What's the best web QA tool?","Selenium");
output(response);
}
function open_window(windowName){
window.open("http://www.cnblogs.com/",windowName);
}
</script>
</head>
<body> <input type="button" id="btnConfirm" onclick="show_confirm()" value="Show confirm box" /></br>
<input type="button" id="btnAlert" onclick="show_alert()" value="Show alert" /></br>
<input type="button" id="btnPrompt" onclick="show_prompt()" value="Show prompt" /> </br>
<a href="http://www.baidu.com" id="linkNewWindow" target="_blank">New Window Link</a></br>
<input type="button" id="btnNewNamelessWindow" onclick="open_window()" value="Open Nameless Window" /></br>
<input type="button" id="btnNewNamedWindow" onclick="open_window('Mike')" value="Open Named Window" />
<br />
<span id="output">
</span>
</body>
</html>
selenium2.0 处理各种窗口问题解决方法的更多相关文章
- vc++6.0各种报错合集(附:VC++6.0调出打印窗口的方法)
背景: 由于VC++6.0对于现在的我来说,只是一个工具,暂时没有太多的时间分配到这块去深究它,由于不明其原理,因此也只是在此把错误积累下来,以备下次相同错误出现时能快速排除,节省时间. 正文 一.出 ...
- selenium IDE处理各种窗口问题解决方法
一.处理模态窗口:showModalDialog 由于弹出模态窗口后,就无法定位到当前窗口的元素和模态窗口的元素,需要添加js解决 模态窗口动作类似下面语句: <input id="c ...
- GeoServer 2.15.0版本跨域问题解决方法
geoserver默认不开启跨域设置,开启步骤如下: 1.修改配置文件web.xml,该配置文件的路径如下 \webapps\geoserver\WEB-INF\web.xml 2.搜索:cross- ...
- 初次安装hive-2.1.0启动报错问题解决方法
首次安装hive-2.1.0,通过bin/hive登录hive shell命令行,报错如下: [hadoop@db03 hive-2.1.0]$ bin/hive which: no hbase in ...
- Flask无法访问(127.0.0.1:5000)的问题解决方法
Flask默认开启的ip地址是:http://127.0.0.1:5000/ 但在运行时可能存在无法访问的问题,特别是当我们在linux服务器上搭建flask时,此时需要将代码修改如下: app.ru ...
- win7中VS2010中安装CSS3.0问题解决方法
win7中VS2010中安装CSS3.0问题解决方法 在安装Standards Update for VS2010 SP1后,VS2010中没有CSS3.0问题,以下是我的解决方法 1.首先去官网 ...
- java绘图原理------在窗口界面(或面板上)画出一张或多张图片问题解决方法
/** *@author blovedr * 功能: java绘图原理------在窗口界面(或面板上)画出一张或多张图片问题解决方法 * 日期: 2018年4月28日 16:20 * 注释: ...
- Springmvx拦截html出现406解决以及Server Tomcat v8.0 Server at localhost failed to start 问题解决方法
问题是这样的:环境是SSM框架,在配置好的框架里想请求一个html,结果406了,406就是HTTP协议状态码的一种,表示无法使用请求的特性来响应请求的网页.一般指客户端浏览器不接受所请求页面的MIM ...
- selenium1.0和selenium2.0页面等待处理详解
一.selenium1.0页面等待 1.……AndWait 经常会看到, selenium action命令中很多有这种……AndWait后缀, 例如click和clickAndWait命令: cli ...
随机推荐
- start-stop-daemon 命令
Usage: start-stop-daemon [<option> ...] <command> Commands: -S|–start — <argument> ...
- numpy+scipy+matlotlib+scikit-learn的安装及问题解决
NumPy(Numeric Python)系统是Python的一种开源的数值计算扩展,一个用python实现的科学计算包.它提供了许多高级的数值编程工具,如:矩阵数据类型.矢量处理,以及精密的运算库. ...
- 要成为开发中最牛逼的测试,测试中最牛逼的开发。从今天起学python,写博客。--python基础学习(一)
Python 3.4.3 (v3.4.3:9b73f1c3e601, Feb 24 2015, 22:44:40) [MSC v.1600 64 bit (AMD64)] on win32Type & ...
- Centos 7 通过YUM安装 PHP7 NGINX1.1.8 POSTGRESQL9.5
转载 1.最小化安装CENTOS7 2.更新源: yum update reboot 3.安装扩展源: yum install epel-release 4.安装工具软件: yum install w ...
- Django数据操作
1.一个模型类代表数据库中的一个表,一个模型类的实例代表这个数据库表中的一条特定的记录. 2.管理器和查询集. 查询集QuerySet表示从数据库中取出来的对象的集合.它可以含有零个.一个或者多个过滤 ...
- RS232转RS485电路图分析
在电子发烧友网站上,看到RS232转RS485的一个电路图,如下图所示.元件主要是HN232CP和MAX485CPA,也就是TTL转232电路和TTL转485电路的结合体.可是这个电路却不好分析,几经 ...
- Convert.ToString和ToString的区别
Convert.ToString能处理字符串为null的情况,不抛出异常. ToString方法不能处理字符串为null的情况,会抛出异常.如:“未将对象引用设置到对象的实例”.
- Extjs4.2 多选下拉框
//多选下拉框 Ext.define('MDM.view.custom.MultiComboBox', { extend: 'Ext.form.ComboBox', alias: 'widget.mu ...
- VS调试错误:“没有可用于当前位置的源代码”的解决方案
今天,有朋友在问为什么我在调试的时候会出现"没有可用于当前位置的源代码"的错误呢? MSDN上的说法:没有可用于当前位置的源代码,项目不包含您试图查看代码的源代码.原因通常是双击了 ...
- Ubutn14.04下caffeine工具不显示在工具栏中的问题
安装过程请参考Ubuntu 14.04下安装Caffeine 2.6.2 阻止显示器进入睡眠状态 至于为什么不显示在任务栏,这不是程序的bug,你可以平ps -e看一下,任务已经在运行. 其实这是新版 ...