Capybara switch_to.alert(对话框)间歇性故障

发布于 2024-12-07 06:11:19 字数 355 浏览 0 评论 0原文

我正在尝试使用 RSPEC / Capybara 与 FF 中的对话框进行交互。

在以下位置找到了一个优雅的解决方案:如何使用 Cucumber 测试确认对话框?< /a>

page.driver.browser.switch_to.alert.accept

然而,当切换没有发生时,我们会遇到间歇性故障。

有人遇到过这种情况吗?无论如何要确保切换始终成功?

谢谢!

I'm trying to interact with a dialog box in FF using RSPEC / Capybara.

Found a elegant solution in: How to test a confirm dialog with Cucumber?

page.driver.browser.switch_to.alert.accept

However we're getting intermittent failures when the switch doesn't happen.

Anyone encountered this? Anyway to ensure the switch is always successful?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

壹場煙雨 2024-12-14 06:11:19

正如答案所述,当模式警报/确认/提示对话框打开时,浏览器将变得无响应。如今,即使浏览器已经学会了显示非模式窗口,Capybara 仍然无法评估页面上下文中的任何代码。

正如链接的答案所述,只需存根 window.confirm 方法即可。这是最好的稳定方式。

您可以在 Capybara 中编写以下两个步骤:

When /I ensure the confirm box returns OK/ do
  page.evaluate_script('window.confirm = function() { return true; }')
end

When /I ensure the confirm box returns Cancel/ do
  page.evaluate_script('window.confirm = function() { return false; }')
end

然后您可以继续重写您的 Capybara 步骤,以便首先确保您对确认框进行存根,然后单击触发确认的链接盒子:

When I ensure the confirm box returns OK
And I click on Remove
Then ...

As the answer states, the Browser becomes unresponsive when the modal Alert/Confirm/Prompt dialog boxes open. Nowadays, even though browsers have learnt to show non-modal windows, Capybara still can't evaluate any code in the page context.

As the linked answer states, just stub the window.confirm method. That is the best stable way.

You can write the following two steps in Capybara:

When /I ensure the confirm box returns OK/ do
  page.evaluate_script('window.confirm = function() { return true; }')
end

When /I ensure the confirm box returns Cancel/ do
  page.evaluate_script('window.confirm = function() { return false; }')
end

Then you can proceed to rewrite your Capybara steps, so that first you make sure you stub the confirm box, and then you click on the link that triggers the confirm box:

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