51Testing软件测试论坛

标题: 【转帖】WebDriver拾级而上(06) – 获得弹出窗口 [打印本页]

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


作者: 巴黎的灯光下    时间: 2017-7-14 15:05
楼主这最后有些幽默啊




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2