java selenium 操作快顯視窗範例程式碼_java

來源:互聯網
上載者:User

selenium 中如何處理快顯視窗

閱讀目錄

  1. 原理
  2. 測試頁面的HTML
  3. Java 代碼

原理

在代碼裡, 通過         Set<String> allWindowsId = driver.getWindowHandles();

來擷取到所有彈出瀏覽器的控制代碼,   然後遍曆,  使用swithcto.window(newwindow_handle)方法。 就可以定位到新的視窗

測試頁面的HTML

<html><head>  <title>常見web ui元素操作, 及API使用</title>  <script type="text/javascript">    function open_win()     {    window.open("http://www.cnblogs.com")    }  </script></head><body>  <form>    <input type=button value="開啟視窗" onclick="open_win()">  </form>  </div></body></html>

Java 代碼

public static void testMultipleWindowsTitle(WebDriver driver) throws Exception  {    String url="E:\\StashFolder\\huoli_28@hotmail.com\\Stash\\Tank-MoneyProject\\Selenium Webdriver\\AllUIElement.html";    driver.get(url);    // 擷取當前視窗的控制代碼    String parentWindowId = driver.getWindowHandle();    System.out.println("driver.getTitle(): " + driver.getTitle());        WebElement button = driver.findElement(By.xpath("//input[@value='開啟視窗']"));    button.click();        Set<String> allWindowsId = driver.getWindowHandles();        // 擷取所有的開啟視窗的控制代碼    for (String windowId : allWindowsId) {      if (driver.switchTo().window(windowId).getTitle().contains("部落格園")) {        driver.switchTo().window(windowId);        break;      }    }        System.out.println("driver.getTitle(): " + driver.getTitle());        // 再次切換回原來的父視窗    driver.switchTo().window(parentWindowId);    System.out.println("parentWindowId: " + driver.getTitle());  }

以上就是關於Java selenium 操作彈窗視窗的樣本,後續繼續整理相關資料,謝謝大家對本站的支援!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.