如何在java中使用selenium webdriver禁用所有警报?

时间:2014-09-07 13:13:03

标签: java selenium-webdriver webdriver

我想使用webdriver禁用所有警报,而禁用警报应该影响为true。 谢谢 Akmal Rasool

1 个答案:

答案 0 :(得分:0)

据我所知,您想检查警报,如果有任何警报,您想接受这些警报。

请参阅以下代码。

public boolean alertPresence() 
{ 
  boolean presence = false;   
  try 
  { 
       driver.switchTo().alert();
       presence = true; 
       alert.accept();

  }  
  catch (NoAlertPresentException Ex) 
  { 
        Ex.printStackTrace;
        presence = false; 
  } 
}