如何处理在注销应用程序时出现的对话框

时间:2015-03-16 10:46:25

标签: security selenium-webdriver dialog

在我的网络应用程序中,我正在使用OK按钮和Cancel按钮进行对话。

有人可以建议如何以编程方式点击此对话框上的ok按钮吗?

1 个答案:

答案 0 :(得分:0)

您可以尝试切换到提醒并接受或取消它。

Alert alert = driver.switchTo().alert();
alert.accept(); 

alert.dismiss();

如果警报需要时间加载,您需要等待它。例如如下:

WebDriverWait wait = new WebDriverWait(driver,10);
wait.until(ExpectedConditions.alertIsPresent()).accept();