使用java检查selenium中是否存在模态对话框

时间:2013-03-12 11:05:32

标签: java selenium-webdriver

有没有检查Selenium网络驱动程序中是否存在模型对话框?我使用以下代码:

public boolean isAlertPresent()
{
    try
    {
        driver.switchTo().alert();
        robotClass();
        System.out.println("Model dialog is present");
        return true;
    } 
    catch (NoAlertPresentException Ex)
    {
        System.out.println("Model dialog is not present");
        return false;
    } 
}

此代码可以正常检查是否存在警告对话框。我想用java检查selenium中是否存在模型对话框。请帮我解决这个问题。

1 个答案:

答案 0 :(得分:-1)

我相信这个问题的第二个答案就是你要找的答案:How to check if an alert exists using WebDriver?