Ok so I know there are a number of other answers on this question about alerts in webdriver and I've looked through them but I think my situation is a little different. When I click my submit button I have already switched into 3 frames and then I get the alert, so I tried to switch back to default content and then click the alert using a try catch and alert.accept but it still doesn't click the alert. Code is below. Thanks in advance for your assistance :)
public class BookAHoliday {
public FirstPage completeHolidayFormAndSubmit(String firstDate, String lastDate) {
sleepsAreBad();
driver.switchTo().frame("ContainerFrame");
driver.switchTo().frame("iframeCommunityContainer");
driver.switchTo().frame("FORMCONTAINER");
fluentWait(By.id("StartDate_txtInput"));
firstDayOfLeaveInput.sendKeys(firstDate);
sleepsAreBad();
lastDayofLeaveInput.sendKeys(lastDate);
try {
submitButton.click();
} catch (UnhandledAlertException f) {
try {
sleepsAreBad();
driver.switchTo().defaultContent();
Alert alert = driver.switchTo().alert();
String alertText = alert.getText();
System.out.println("Alert data: " + alertText);
alert.accept();
} catch (NoAlertPresentException e) {
e.printStackTrace();
}
}
sleepsAreBad();
return PageFactory.initElements(driver, FirstPage.class);
}
private void sleepsAreBad() {
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
public class BaseTest {
public static WebDriver driver;
static String driverPath = "C:\\";
@BeforeClass
public static void setUp() {
System.out.println("****************");
System.out.println("launching Browser");
System.out.println("****************");
// Browser selection
//Firefox
DesiredCapabilities dc = new DesiredCapabilities();
dc.setCapability(CapabilityType.UNEXPECTED_ALERT_BEHAVIOUR, UnexpectedAlertBehaviour.IGNORE);
driver = new FirefoxDriver(dc);
driver.get(URL);
@AfterClass()
public static void tearDown() {
if (driver != null) {
System.out.println("Closing browser");
driver.quit();
}
}
public class Bookings extends BaseTest{
@Test(description = "Holiday booking")
public void CD01() {
FirstPage firstPage = PageFactory.initElements(driver, FirstPage.class);
firstPage
.logIn("username", "password")
.clickHolidayLink()
.completeHolidayFormAndSubmit("12/05/2016", "15/05/2016");
}
alert box Here is the alert box
Try this when you have got
UnhandledAlertException
incatch
May be it will help you...:)
For most alerts you can press enter to press alert`s "ok".