在我的网络应用程序中,我正在使用OK
按钮和Cancel
按钮进行对话。
有人可以建议如何以编程方式点击此对话框上的ok
按钮吗?
答案 0 :(得分:0)
您可以尝试切换到提醒并接受或取消它。
Alert alert = driver.switchTo().alert();
alert.accept();
或
alert.dismiss();
如果警报需要时间加载,您需要等待它。例如如下:
WebDriverWait wait = new WebDriverWait(driver,10);
wait.until(ExpectedConditions.alertIsPresent()).accept();