如何处理在硒单击图像中设置IE的警报弹出窗口
答案 0 :(得分:0)
您可以尝试通过硒接受警报。以下Java方法应接受警报并让您继续生活。
public void checkAlert()
{
try
{
// Wait for the alert to show
WebDriverWait wait = new WebDriverWait(driver, 2);
wait.until(ExpectedConditions.alertIsPresent());
driver.switchTo().alert().accept();
}
catch (Exception e)
{
//exception handling
}
}
您也想将import org.openqa.selenium.Alert;
添加到您的导入中。