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