org.openqa.selenium.UnhandledAlertException: unexpected alert open
2022-09-02 03:27:19
我正在使用 Chrome 驱动程序并尝试测试网页。
通常它运行良好,但有时我会收到异常:
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
然后我尝试处理警报:
Alert alt = driver.switchTo().alert();
alt.accept();
但这次我收到了:
org.openqa.selenium.NoAlertPresentException
我附上了警报的屏幕截图:
我现在不知道该怎么办。问题是我并不总是收到这个例外。当它发生时,测试失败。