我需要检查WebDriver中是否存在Alert。
有时它会弹出警报,但有时它不会弹出。我需要先检查警报是否存在,然后我可以接受或解除它,或者它会说:没有发现警报。
答案 0 :(得分:76)
public boolean isAlertPresent()
{
try
{
driver.switchTo().alert();
return true;
} // try
catch (NoAlertPresentException Ex)
{
return false;
} // catch
} // isAlertPresent()
点击此处的链接https://groups.google.com/forum/?fromgroups#!topic/webdriver/1GaSXFK76zY
答案 1 :(得分:21)
以下(C#实现,但在Java中类似)允许您确定是否存在没有异常的警报并且没有创建WebDriverWait
对象。
boolean isDialogPresent(WebDriver driver) {
IAlert alert = ExpectedConditions.AlertIsPresent().Invoke(driver);
return (alert != null);
}
答案 2 :(得分:9)
我建议使用ExpectedConditions和alertIsPresent()。 ExpectedConditions是一个包装类,它实现了ExpectedCondition接口中定义的有用条件。
WebDriverWait wait = new WebDriverWait(driver, 300 /*timeout in seconds*/);
if(wait.until(ExpectedConditions.alertIsPresent())==null)
System.out.println("alert was not present");
else
System.out.println("alert was present");
答案 3 :(得分:7)
我在driver.switchTo().alert();
(FF V20& selenium-java-2.32.0)中发现Firefox
的抓取异常非常慢。“
所以我选择另一种方式:
private static boolean isDialogPresent(WebDriver driver) {
try {
driver.getTitle();
return false;
} catch (UnhandledAlertException e) {
// Modal dialog showed
return true;
}
}
当你的大多数测试用例都没有对话框时,这是一个更好的方法(抛出异常是昂贵的)。
答案 4 :(得分:5)
我建议使用ExpectedConditions和alertIsPresent()。 ExpectedConditions是一个包装类,它实现了ExpectedCondition接口中定义的有用条件。
public boolean isAlertPresent(){
boolean foundAlert = false;
WebDriverWait wait = new WebDriverWait(driver, 0 /*timeout in seconds*/);
try {
wait.until(ExpectedConditions.alertIsPresent());
foundAlert = true;
} catch (TimeoutException eTO) {
foundAlert = false;
}
return foundAlert;
}
注意:这是基于nilesh的答案,但适用于捕获wait.until()方法抛出的TimeoutException。
答案 5 :(得分:1)
public boolean isAlertPresent() {
try
{
driver.switchTo().alert();
system.out.println(" Alert Present");
}
catch (NoAlertPresentException e)
{
system.out.println("No Alert Present");
}
}
答案 6 :(得分:1)
此代码将检查警报是否存在。
public static void isAlertPresent(){
try{
Alert alert = driver.switchTo().alert();
System.out.println(alert.getText()+" Alert is Displayed");
}
catch(NoAlertPresentException ex){
System.out.println("Alert is NOT Displayed");
}
}
答案 7 :(得分:0)
public static void handleAlert(){
if(isAlertPresent()){
Alert alert = driver.switchTo().alert();
System.out.println(alert.getText());
alert.accept();
}
}
public static boolean isAlertPresent(){
try{
driver.switchTo().alert();
return true;
}catch(NoAlertPresentException ex){
return false;
}
}
答案 8 :(得分:0)
ExpectedConditions
已过时,所以:
WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(15));
wait.Until(SeleniumExtras.WaitHelpers.ExpectedConditions.AlertIsPresent());