你如何使用selenium webdriver检查是否存在弹出窗口?

时间:2014-07-23 13:23:17

标签: java selenium-webdriver popupwindow

我在应用程序上运行链接测试,其中一个链接会弹出一个登录弹出窗口。有没有办法检查?我尝试将其视为警报,但它没有用。

try
   {
     WebDriverWait wait = new WebDriverWait(driver, 2);
     wait.until(ExpectedConditions.alertIsPresent());
     Alert alert = driver.switchTo().alert();
     alert.accept();
     reportAlertPresent = true;
    }

2 个答案:

答案 0 :(得分:1)

driver.switchTo().alert()上,可以抛出org.openqa.selenium.NoAlertPresentException,这是未经检查的(即RuntimeException)。

你可以抓住它并可能在循环中这样做。

答案 1 :(得分:1)

如果你的弹出窗口在iframe中,那么

 WebElement frameID = driver.findElement(By.(locator));
 driver.switchTo().frame(frameID);

如果是窗口,则可以使用窗口句柄。以下链接可能会有所帮助

http://www.thoughtworks.com/products/docs/twist/2.3/help/how_do_i_handle_popup_in_selenium2.html

How to handle Pop-up in Selenium WebDriver using Java