使用水豚 + Selenium,如何在新的 Firefox 4 中选择对话框(确认)选项?

发布于 2024-10-28 01:14:00 字数 295 浏览 1 评论 0原文

我针对这个问题进行了大量的研究,遗憾的是没有发现任何关于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

像你 2024-11-04 01:14:00

我遇到了同样的问题,到目前为止我找到的唯一解决方案是降级到 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文