selenium webdriver學習(六)------------如何獲得彈出窗口

在selenium 1.X裏面獲得彈出窗口是一件比較麻煩的事,特別是新開窗口沒有id、name的時候。當時還整理了處理了幾種方法,詳見:http://seleniumcn.cn/read.php?tid=791 。在selenium webdriver中獲得新開窗口相對簡單的多,它無關新開窗口的id、name等屬性。如下面的html爲例:php

Html代碼   收藏代碼
  1. <span style="white-space: normal; #ffffff;">test.html</span>  
  2.   
  3.   
  4. <html>  
  5.    
  6.     <head><title>Test Popup Window</title></head>  
  7.    
  8.     <body>  
  9.    
  10.         <id = "51" href = "http://www.51.com/" target = "_blank">Let's go!</a>  
  11.    
  12.     </body>  
  13.    
  14. </html>  

  下面的代碼演示瞭如何去獲得彈出的新窗口html

 

Java代碼   收藏代碼
  1. import java.util.Iterator;  
  2. import java.util.Set;  
  3.   
  4. import org.openqa.selenium.By;  
  5. import org.openqa.selenium.WebDriver;  
  6. import org.openqa.selenium.firefox.FirefoxDriver;  
  7.   
  8. public class PopupWindowTest {  
  9.   
  10.   
  11.     /** 
  12.      * @author gongjf 
  13.      */  
  14.     public static void main(String[] args) {  
  15.         System.setProperty("webdriver.firefox.bin","D:\\Program Files\\Mozilla Firefox\\firefox.exe");    
  16.         WebDriver dr = new FirefoxDriver();  
  17.         String url ="\\Your\\Path\\to\\main.html";  
  18.         dr.get(url);      
  19.         dr.findElement(By.id("51")).click();  
  20.         //獲得當前窗口的句柄  
  21.         String currentWindow = dr.getWindowHandle();  
  22.         //獲得全部窗口的句柄  
  23.         Set<String> handles = dr.getWindowHandles();  
  24.         Iterator<String> it = handles.iterator();  
  25.         while(it.hasNext()){  
  26.             String handle = it.next();  
  27.             if(currentWindow.equals(handle)) continue;  
  28.             WebDriver window = dr.switchTo().window(handle);  
  29.             System.out.println("title,url = "+window.getTitle()+","+window.getCurrentUrl());  
  30.         }  
  31.     }  
  32.   
  33. }  

 

 輸出結果:java

 

Java代碼   收藏代碼
  1. title,url = 51.com 真人配對玩遊戲,http://www.51.com/  
 

 

 

捕獲或者說定位彈出窗口的關鍵在於得到彈出窗口的句柄。(句柄,個人理解是瀏覽器窗口的一個惟一標識,記得之前玩"按鍵精靈"也有這玩樣。)web

在上面的代碼裏,使用windowhandle方法來獲取當前瀏覽器窗口的句柄,使用了windowhandles方法獲取全部彈出的瀏覽器窗口的句柄,而後經過排除當前句柄的方法來獲得新開窗口的句柄。瀏覽器

在獲取新彈出窗口的句柄後,使用switchto.window(newwindow_handle)方法,將新窗口的句柄做爲參數傳入既可捕獲到新窗口了。學習

若是想回到之前的窗口定位元素,那麼再調用1次switch_to.window方法,傳入以前窗口的句柄既可達到目的。url

 

 

----------------------------------------------------------2102年6月20日------------------------------------------------------spa

PS:今天發現while裏的代碼有些問題。由原來的:firefox

 

Java代碼   收藏代碼
  1. while(it.hasNext()){  
  2.             if(currentWindow ==  it.next()) continue;  
  3.             WebDriver   window = dr.switchTo().window(it.next());  
  4.             System.out.println("title,url = "+window.getTitle()+","+window.getCurrentUrl());  
  5.         }  
 

更改成:orm

 

Java代碼   收藏代碼
  1. while(it.hasNext()){  
  2.             String handle = it.next();  
  3.             if(currentWindow.equals(handle)) continue;  
  4.             WebDriver   window = dr.switchTo().window(handle);  
  5.             System.out.println("title,url = "+window.getTitle()+","+window.getCurrentUrl());  
  6.         }  

 

更改緣由: 

循環裏面有兩次it.next,多取了一次。

相關文章
相關標籤/搜索