本文介绍了使用Capybara进行AJAX集成测试的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Capybara进行Rails集成测试。当涉及到AJAX请求时,出现以下错误:

I am using Capybara for rails integration tests. When it comes to AJAX requests, I am getting the following error:

Capybara::TimeoutError: failed to resynchronize, ajax request timed out

任何想法都出了什么问题以及如何解决?

Any idea what's wrong and how this can be fixed?

推荐答案

升级硒/水豚宝石后,我遇到了同样的问题。造成这种情况的原因是一些AJAX同步逻辑,因此我只是在测试挂钩中将其禁用。

I had this same issue once I upgraded my selenium/capybara gems. There is some AJAX synchronization logic that is causing this, so I just disabled it within my test hook.

Before do
  page.driver.options[:resynchronize] = false
end

这篇关于使用Capybara进行AJAX集成测试的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 23:35