Pages

Showing posts with label switchTo().alert(). Show all posts
Showing posts with label switchTo().alert(). Show all posts

Thursday, 8 March 2012

How can I handle alert dialog box?

Below method will handle the alert dialog displayed and also it will return the alert message displayed.

public String getAlert() { 
     Alert alert = driver.switchTo().alert(); 
     String alertMsg = alert.getText();
     alert.accept();
     return alertMsg; }