Selenium 2 - 由后退按钮触发的 Javascript 警报会阻止 driver.navigate().back()
我需要处理按下后退按钮时触发的 JavaScript 警报。即:
- 转到我们的网站
- 点击返回
- Javascript 警报将弹出
关闭警报
我实现了一个测试,该测试在 Firefox 中运行良好,但在 Internet Explorer (7) 中,driver.navigate.back() 方法会阻塞,直到手动删除警报为止。
有人以前遇到过这个吗?任何提示将不胜感激:)
我使用 RemoteWebDriver 进行此测试。
标记
I need to handle a javascript alert which is triggered when the back button is pressed. i.e.:
- Go to our site
- Click back
- Javascript alert will pop up
Dismiss alert
I implemented a test which works fine in firefox but in Internet Explorer (7), the driver.navigate.back() method blocks until the alert is manually removed.
Has anyone come across this before? Any hints would be highly appreciated :)
I am using RemoteWebDriver for this test.
Mark
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 RemoteWebDriver,则可以使用 RemoteTargetLocator 内部类,它实现了处理警报的方法:
If you are using RemoteWebDriver you can use the RemoteTargetLocator inner class, it implements methods to handle alerts:
我设法通过发送以下 javascript 命令而不是使用 navigator().back() 来解决此问题:
I managed to solve this by sending the following javascript command instead of using navigate().back():