モデルダイアログボックスが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を使用してセレンにモデルダイアログボックスが存在するかどうかを確認したい。この問題を解決するために私を助けてください。