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?

link|improve this question

60% accept rate
feedback

3 Answers

up vote 8 down vote accepted

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
link|improve this answer
Thanks a lot jason!! – Kranthi Kishore Jul 17 '11 at 5:20
2  
That bit of code goes in features/step_definitions/mydefiniation.rb – SooDesuNe Jul 20 '11 at 0:43
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.

link|improve this answer
2  
This is now in the current Capybara releases -- no need to get the branch anymore. – Jo Liss Dec 8 '11 at 21:02
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.

     Capybara.register_driver :selenium do |app|
       Capybara::Selenium::Driver.new(app, :browser => :firefox, :resynchronization_timeout => 1000)
     end

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.