zoukankan      html  css  js  c++  java
  • Selenium 切换句柄

    最近用了网络上别人的一段切换窗口的code每次成功了,不错,学习

    // 根据Title切换新窗口
      public boolean switchToWindow_Title(WebDriver driver, String windowTitle) {
        boolean flag = false;
        try {
          String currentHandle = driver.getWindowHandle();
          Set<String> handles = driver.getWindowHandles();
          for (String s : handles) {
            if (s.equals(currentHandle))
              continue;
            else {
              driver.switchTo().window(s);
              if (driver.getTitle().contains(windowTitle)) {
                flag = true;
                System.out.println("Switch to Window: " + windowTitle
                    + "  successfully~~~!");
                break;
              } else
                continue;
            }
          }
        } catch (NoSuchWindowException e) {
          System.out.println("Window: " + windowTitle + " cound not find!!!"
              + e.fillInStackTrace());
          flag = false;
        }
        return flag;
      }
    // 根据URL切换新窗口
      public boolean switchToWindow_Url(WebDriver driver, String windowUrl) {
        boolean flag = false;
        try {
          String currentHandle = driver.getWindowHandle();
          Set<String> handles = driver.getWindowHandles();
          for (String s : handles) {
            if (s.equals(currentHandle))
              continue;
            else {
              driver.switchTo().window(s);
              if (driver.getCurrentUrl().contains(windowUrl)) {
                flag = true;
                System.out.println("Switch to Window: " + windowUrl
                    + "  successfully~~~!");
                break;
              } else
                continue;
            }
          }
        } catch (NoSuchWindowException e) {
          System.out.println("Window: " + windowUrl + " cound not find!!!"
              + e.fillInStackTrace());
          flag = false;
        }
        return flag;
      }
  • 相关阅读:
    VTK初学一,b_PolyVertex多个图形点的绘制
    VTK初学一,a_Vertex图形点的绘制
    Python基础学习之集合
    Apache
    NTP时间同步服务和DNS服务
    NFS服务及DHCPD服务
    samba服务及vsftpd服务
    Linux rpm和yum软件管理
    Linux网络技术管理及进程管理
    Linux RAID磁盘阵列
  • 原文地址:https://www.cnblogs.com/zoeya/p/5082806.html
Copyright © 2011-2022 走看看