使用水豚 + Selenium,如何在新的 Firefox 4 中选择对话框(确认)选项?
我针对这个问题进行了大量的研究,遗憾的是没有发现任何关于 Firefox 4 的有用信息。 此选项在 3.6 中运行良好:
a = page.driver.browser.switch_to.alert
if a.text == 'OK'
a.dismiss
else
a.accept
end
不幸的是,在弹出时手动单击“确定”不是一个选项。我也为此尝试了各种 JavaScript 选项(其中一个本质上是通过预先发送值来“欺骗”提示)。
谢谢您的宝贵时间,
-R
I have done a solid amount of research for this issue and have sadly found nothing useful in regards to Firefox 4.
This option worked fine in 3.6:
a = page.driver.browser.switch_to.alert
if a.text == 'OK'
a.dismiss
else
a.accept
end
Unfortunately, simply clicking on the "OK" manually when it pops up is not an option. I've tried the various JavaScript options for this, as well (where one essentially "tricks" the prompt by sending it values beforehand).
Thank you for your time,
-R
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了同样的问题,到目前为止我找到的唯一解决方案是降级到 Firefox 3.6.x
I've had the same problem, the only solution I've found so far is downgrading to Firefox 3.6.x