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?
|
I am using Capybara for rails integration tests. When it comes to AJAX requests, I am getting the following error:
Any idea what's wrong and how this can be fixed?
| ||||
|
feedback
|
|
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.
| |||||||
feedback
|
|
If you are on rail 3 change this in your gem file. gem 'capybara', :git => 'git://github.com/jnicklas/capybara.git', :branch =>'async_is_my_bitch' then do bundle update. This will solve it. | |||||
feedback
|
|
If you find yourself still having this error even after all of the above solutions, it might be you have not set the :resynchronization_timeout option in Selenium. This defaults to 10 secs. Increasing this should prevent you getting this error. The example below is a snippet from my env.rb file which increases :resynchronization_timeout to 1000 secs.
NOTE: Do this only if you need to assert your ajax response and this does not return quicker than 10 secs. If you do not care about your ajax response you could just set :resynchronize to false as indicated in the solution above. | |||
|
feedback
|