2

无论如何要检查 Selenium Web 驱动程序中是否存在模型对话框?我正在使用以下代码:

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 中是否存在模型对话框。请帮我解决这个问题。

4

1 回答 1

-1

我相信这个问题的第二个答案是您正在寻找的答案:如何使用 WebDriver 检查是否存在警报?

于 2013-03-12T20:30:29.623 回答