使用Java在Selenium中如何处理多个窗口?


在使用Selenium和Java进行工作时,有效地处理多个窗口至关重要。在Selenium中管理多个窗口涉及在测试自动化期间在不同的浏览器窗口或弹出窗口之间导航。它允许与各种元素交互并验证跨不同窗口的功能。

正确处理多个窗口可确保全面的测试覆盖率和准确的结果。通过利用Selenium的WebDriver接口和Java,您可以检索窗口句柄,在窗口之间切换,对特定窗口执行操作,并自动化涉及多个浏览器窗口的复杂场景。掌握这项技能可以提高Selenium测试自动化脚本的效率和可靠性。

Selenium

Selenium是一个开源自动化框架,广泛用于测试Web应用程序。它通过提供一系列库和工具来简化浏览器交互、用户行为模拟和功能测试。此外,Selenium支持包括Java在内的多种编程语言,使其成为全球开发人员的热门选择。

WebDriver driver = new ChromeDriver();

方法

在使用Java的Selenium处理多个窗口时,可以使用各种方法和技术。本教程包含不同的示例,以帮助读者理解如何有效地处理多个窗口。

  • 使用`getWindowHandles()`

  • 使用`switchTo().window(handle)`

  • 使用`quit()`

方法1:使用`getWindowHandles()`

在使用Java的Selenium处理多个窗口时,有一个名为`getWindowHandles()`的有用方法。此方法将所有当前打开的窗口句柄作为集合返回。通过以这种方式存储它们,用户可以在需要时轻松地在不同的窗口之间切换。要使用此方法,首先使用`getWindowHandle()`获取当前窗口句柄。执行打开新窗口的操作后,使用`getWindowHandles()`检索所有句柄以继续在它们之间切换。

为了在自动化测试期间有效地处理多个窗口,可以遍历集合并使用`switchTo().window()`方法,同时将所需的句柄作为参数传递。这使我们能够在Selenium和Java中与特定窗口交互,从而使测试更有效。

算法

  • 获取当前窗口句柄的方法是通过`getWindowHandle()`函数。然后可以将此句柄存储在一个变量中以供进一步使用。

  • 使用`getWindowHandles()`方法检索所有窗口句柄,并将它们存储在一个集合中。

  • 使用循环遍历窗口句柄集合。

  • 要在循环内切换到特定窗口,可以使用`switchTo().window()`方法并将相应的句柄作为输入参数。

  • 在新窗口上执行所需的操作或动作。

示例

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;

import java.util.Set;

public class MultipleWindowsExample {

   public static void main(String[] args) {
      // Set the path to the ChromeDriver executable
      System.setProperty("webdriver.chrome.driver", "path/to/chromedriver");

      // Create an instance of ChromeDriver
      WebDriver driver = new ChromeDriver();

      // Navigate to the webpage with multiple windows
      driver.get("https://tutorialspoint.com");

      // Perform an action that opens a new window, such as clicking a link
      driver.findElement(By.linkText("Open New Window")).click();

      // Get all window handles
      Set<String> windowHandles = driver.getWindowHandles();

      // Iterate through each window handle
      for (String windowHandle : windowHandles) {
         // Switch to the desired window
         driver.switchTo().window(windowHandle);
         // Perform actions on the window
         System.out.println("Title of the window: " + driver.getTitle());
      }

      // Close the driver instance
      driver.quit();
   }
}

输出

Title of the window: Online Courses and eBooks Library
Title of the window: New Window

方法2:使用`switchTo().window(handle)`

在使用Java的Selenium处理多个窗口时,`switchTo().window(handle)`方法是基础。首先,我们通过`getWindowHandles()`检索窗口句柄。从那里,遍历每个句柄并应用此技术,我们可以执行各种操作并与属于特定窗口的特定元素进行交互。将相关的窗口句柄作为参数传递将切换驱动程序的上下文;因此,仅在需要的地方执行操作。

算法

  • 要启动新窗口的打开,必须首先确定触发操作或事件,例如单击链接或按钮。

  • 要检索窗口句柄,请使用`getWindowHandles()`方法。此方法检索所有打开的窗口并将其作为集合返回。

  • 在循环内,可以通过使用`switchTo().window(handle)`方法平滑地切换到每个可用窗口。“handle”在此处的上下文是指

  • 代码可能需要使用`switchTo().window(originalHandle)`切换回原始窗口,然后才能继续进行下一个迭代。

示例

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;

import java.util.Set;

public class MultipleWindowsExample {

   public static void main(String[] args) {
      // Set the path to the ChromeDriver executable
      System.setProperty("webdriver.chrome.driver", "path/to/chromedriver");

      // Create an instance of ChromeDriver
      WebDriver driver = new ChromeDriver();

      // Navigate to the main window
      driver.get("https://tutorialspoint.com");

      // Perform an action that opens a new window, such as clicking a link
      driver.findElement(By.linkText("Open New Window")).click();

      // Get all window handles
      Set<String> windowHandles = driver.getWindowHandles();

      // Switch to the new window
      for (String windowHandle : windowHandles) {
         driver.switchTo().window(windowHandle);
         // Check if the window title matches the new window
         if (driver.getTitle().equals("New Window Title")) {
            // Perform actions on the new window
            System.out.println("Title of the new window: " + driver.getTitle());
            break;
         }
      }

      // Close the driver instance
      driver.quit();
   }
}

输出

Title of the window: Online Courses and eBooks Library
Title of the window: New Window

方法3:使用`quit()`

要使用Java的Selenium处理多个窗口,`quit()`方法对于浏览器的正确清理和关闭非常重要。在对所有窗口执行所需的操作后,必须在驱动程序实例上调用`quit()`方法。此方法关闭所有浏览器窗口并终止WebDriver会话。它释放相关的系统资源并确保干净退出。

算法

  • 可以使用`getWindowHandle()`方法检索当前窗口的句柄。只需将此句柄存储在一个变量中即可稍后访问它。

  • 要在循环内切换到特定窗口,可以使用`switchTo().window()`方法,并将句柄作为参数传递。

  • 如果需要,可以使用`switchTo().window()`方法并传递原始窗口句柄作为参数返回到原始窗口。

  • 完成所有窗口上的所有必要操作后,通过在驱动程序实例上调用`quit()`方法来关闭浏览器。

  • 通过执行`quit()`方法,WebDriver会话优雅地结束,确保关闭所有浏览器窗口并释放资源。

程序

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;

public class QuitExample {

   public static void main(String[] args) {
      // Set the path to the ChromeDriver executable
      System.setProperty("webdriver.chrome.driver", "path/to/chromedriver");

      // Create an instance of ChromeDriver
      WebDriver driver = new ChromeDriver();

      // Navigate to a webpage
      driver.get("https://tutorialspoint.com");

      // Perform actions on the webpage

      // Close all windows opened by the WebDriver instance
      driver.quit();
   }
}

输出

Closes the webpage

结论

在本教程中,我们了解到,使用Java在Selenium中处理多个窗口是Web自动化测试的一个重要方面。通过使用`getWindowHandles()`和`switchTo().window(handle)`等方法,测试人员可以有效地在不同窗口之间导航,对特定窗口执行操作,并根据需要检索窗口句柄。`quit()`方法对于关闭WebDriver实例打开的所有窗口以及确保WebDriver会话的正确清理和终止非常有价值。

更新于:2023年7月25日

3K+ 次浏览

启动您的职业生涯

通过完成课程获得认证

开始
广告