While using the Chrome Driver to test a webpage, I typically have no issues. However, there are times when exceptions occur:
org.openqa.selenium.UnhandledAlertException: unexpected alert open
(Session info: chrome=38.0.2125.111)
(Driver info: chromedriver=2.9.248315,platform=Windows NT 6.1 x86) (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 16 milliseconds: null
Build info: version: '2.42.2', revision: '6a6995d', time: '2014-06-03 17:42:30'
System info: host: 'Casper-PC', ip: '10.0.0.4', os.name: 'Windows 7', os.arch: 'x86', os.version: '6.1', java.version: '1.8.0_25'
Driver info: org.openqa.selenium.chrome.ChromeDriver
In an attempt to address the alert, I used the following code:
Alert alt = driver.switchTo().alert();
alt.accept();
However, this resulted in another exception:
org.openqa.selenium.NoAlertPresentException
I've included screenshots of the alert for reference:
At this point, I'm unsure of what steps to take next. The inconsistency of these exceptions is causing my tests to fail.