如何处理Selenium中的IE安装程序弹出窗口

时间:2019-03-15 09:18:31

标签: selenium alerts

如何处理在硒单击图像中设置IE的警报弹出窗口 enter image description here

1 个答案:

答案 0 :(得分:0)

您可以尝试通过硒接受警报。以下Java方法应接受警报并让您继续生活。

public void checkAlert() 
{
    try 
    {
        // Wait for the alert to show
        WebDriverWait wait = new WebDriverWait(driver, 2);
        wait.until(ExpectedConditions.alertIsPresent());

        driver.switchTo().alert().accept();

    } 
    catch (Exception e) 
    {
        //exception handling
    }
}

您也想将import org.openqa.selenium.Alert;添加到您的导入中。