public void findWhenAlertAreGone() throws Exception {
By b = By.xpath(actionOKCancel);
WebElement el = driver.findElement(b);
el.click();
Alert alert = driver.switchTo().alert();
try {
el.click();
Assert.fail();
} catch (UnhandledAlertException e) {
//expected
}
alert.accept();
el.click();
driver.switchTo().alert();
alert.accept();
}