Selenium:处理一个随机弹出的窗口

时间:2016-04-05 14:44:24

标签: selenium random selenium-webdriver popup window

我们有一项收集客户反馈的功能。为此,当用户注销时,会随机弹出一个窗口 - 而不是每次都为每个客户弹出一个窗口。 我想在自动化代码中处理这个问题。

目前,在注销时,我期待一个窗口并切换到它,当弹出窗口没有显示时,代码失败。

处理此问题的最佳方法是什么。

这就是我到目前为止......

    public static void waitForNumberOfWindowsToEqual(final int numberOfWindows) {


    ExpectedCondition<Boolean> expectation = new ExpectedCondition<Boolean>() {
        public Boolean apply(WebDriver driver) {
            return (driver.getWindowHandles().size() == numberOfWindows);
        }
    };

    WebDriverWait wait = new WebDriverWait(driver, BrowserFactory.explicitWait);


    wait.until(expectation);
}

3 个答案:

答案 0 :(得分:1)

如果可能的话,理想的做法是查看源代码以确定弹出窗口是否会出现,但是如果无法实现,您可以采取以下方法:

// Get the number of windows open before clicking the log out button.    
int numberOfWindowsBeforeLogOut = driver.getWindowHandles().size();

// Click the log out button.
logOutButton.click();

// Check how many windows are open after clicking the log out button.
int numberOfWindowsAfterLogOut = driver.getWindowHandles().size();

// Now compare the number of windows before and after clicking the log out 
// button in a condition statement.
if (numberOfWindowsBeforeLogOut < numberOfWindowsAfterLogOut) {
   // If there is a new window available, switch to it.
   driver.switchTo().window(titleOrWindowHandle);
}

答案 1 :(得分:1)

我会用try / catch来处理弹出窗口的缺失。这是一个例子:

try {
    WebDriverWait winwait = new WebDriverWait(driver, 3);
    String mainWindow = driver.getWindowHandle();

    // wait for 2 windows and get the handles
    Set<String> handles = winwait.until((WebDriver drv) -> {
        Set<String> items = drv.getWindowHandles();
        return items.size() == 2 ? items : null;
    });

    // set the context on the last opened window
    handles.remove(mainWindow);
    driver.switchTo().window(handles.iterator().next());

    // close the window
    driver.close();

    // set the context back to the main window
    driver.switchTo().window(mainWindow);

} catch (TimeoutException ex) {
    System.out.println("No window present within 3 seconds");
}

答案 2 :(得分:0)

如果您没有获得所需的窗口,代码将抛出TimeoutException。因此,将wait.until(expectation)置于try块中并捕获异常。在代码中,

try {
    wait.until(expectation);
} catch (TimeoutException ex) {
    System.out.println("Nowindow This Time");
}