如何处理硒IE设置弹出窗口(How To Handle IE Setup Popup in Sele

2019-10-28 13:20发布

如何处理IE设置硒点击图像警报弹出

Answer 1:

你可以试着接受通过硒的警告。 下面的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; 你太进口。



文章来源: How To Handle IE Setup Popup in Selenium