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