51Testing软件测试论坛
标题:
【转帖】WebDriver拾级而上(06) – 获得弹出窗口
[打印本页]
作者:
悠悠小仙仙
时间:
2017-7-14 10:53
标题:
【转帖】WebDriver拾级而上(06) – 获得弹出窗口
[attach]107437[/attach]
捕获或者说定位弹出窗口的关键在于获得弹出窗口的句柄。
在代码里,使用getWindowHandle方法来获取当前浏览器窗口的句柄,使用了getWindowHandles方法获取所有弹出的浏览器窗口的句柄,然后通过排除当前句柄的方法来得到新开窗口的句柄。
在获取新弹出窗口的句柄后,使用switchto.window(newwindow_handle)方法,将新窗口的句柄作为参数传入既可捕获到新窗口了。
如果想回到以前的窗口定位元素,那么再调用1次switchto.window方法,传入之前窗口的句柄既可达到目的。
Html代码:
CODE:
<font size="4"><span style="white-space: normal; background-color: #ffffff;">test.html</span>
<html>
<head><title>Test Popup Window</title></head>
<body>
<a id = "bd" href = "http://www.baidu.com/" target = "_blank">Let's go!</a>
</body>
</html></font>
复制代码
下面的代码演示了如何去得到弹出的新窗口
Java代码:
CODE:
<font size="4">package com.test_webdriver;
import java.util.Iterator;
import java.util.Set;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class Test_popup {
public static void main(String[] args) {
String url = "file:///D:/selenium/html/popup.html";
// 打开chrome
WebDriver dr = new ChromeDriver();
dr.get(url);
dr.findElement(By.id("bd")).click();
// 得到当前窗口的句柄
String currentWindow = dr.getWindowHandle();
// 得到所有窗口的句柄
Set<String> handles = dr.getWindowHandles();
Iterator<String> it = handles.iterator();
while (it.hasNext()) {
if (currentWindow == it.next())
continue;
WebDriver window = dr.switchTo().window(it.next());
System.out.println("title,url = " + window.getTitle() + "," + window.getCurrentUrl());
}
dr.close();// 关闭当前页面
// dr.quit();//关闭全部页面
}
}</font>
复制代码
输出结果:
title,url = 百度一下,你就知道,
http://www.baidu.com/
作者:
巴黎的灯光下
时间:
2017-7-14 15:05
楼主这最后有些幽默啊
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2