我想使用webdriver禁用所有警报,而禁用警报应该影响为true。 谢谢 Akmal Rasool
答案 0 :(得分:0)
据我所知,您想检查警报,如果有任何警报,您想接受这些警报。
请参阅以下代码。
public boolean alertPresence()
{
boolean presence = false;
try
{
driver.switchTo().alert();
presence = true;
alert.accept();
}
catch (NoAlertPresentException Ex)
{
Ex.printStackTrace;
presence = false;
}
}