I have the following typical cucumber steps in a Rails 3.1 project:

...
When I follow "Remove from cart"
Then I should see "Test Product removed from cart"

The difficulty is that "Remove from cart" button is an ajax :remote call, which returns "Test Product removed from cart" to the #cart_notice element via:

$('#cart_notice').append("<%= @product.name %> removed from cart");

The function works fine in the browser, but doesn't find the "Test Product removed from cart" text in cucumber. I'm guessing this is because Cucumber is searching for the text before the AJAX returns it?

So, in short...how do I ensure cucumber waits for the ajax to return a result before searching for the desired content?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

To add to what dexter said, you may want to write a step that executes JS in the browser which waits for ajax requests to finish. With jQuery, I use this step:

When /^I wait for the ajax request to finish$/ do
  start_time = Time.now
  page.evaluate_script('jQuery.isReady&&jQuery.active==0').class.should_not eql(String) until page.evaluate_script('jQuery.isReady&&jQuery.active==0') or (start_time + 5.seconds) < Time.now do
    sleep 1
  end
end

You can then include the step as needed, or after every javascript step:

AfterStep('@javascript') do
  begin
    When 'I wait for the ajax request to finish'
  rescue
  end
end

I was having issues with the automatic synchronization, and this cleared it up.

link|improve this answer
I believe you are missing a "do" at the end of the page.evaluate_script line. – John Naegle Mar 7 at 17:28
feedback

I guess you are using cucumber with capybara. In that case, capybara comes with a resynchronize feature. "Capybara can block and wait for Ajax requests to finish after you’ve interacted with the page." - from capybara documentation

You can enable it in features/support/env.rb

Capybara.register_driver :selenium do |app|
  Capybara::Driver::Selenium.new(app, :browser => browser.to_sym, :resynchronize => true) 
end

But, I have seen this causing timeout issues. So, if that isn't working for you, I would recommend introducing a manual wait step before asserting the results of the ajax request.

...
When I follow "Remove from cart"
And I wait for 5 seconds
Then I should see "Test Product removed from cart"

You can define the wait step in step_definitions/web_steps.rb as

When /^I wait for (\d+) seconds?$/ do |secs|
  sleep secs.to_i
end
link|improve this answer
2  
you should never just wait a certain period of time --- this will make your tests quite unstable. Better integrate waiting with active polling and a timeout boundary – pagid Dec 21 '11 at 23:02
Agreed. Waiting for X seconds is never the answer. – EndangeredMassa Mar 9 at 17:20
feedback

Your Answer

 
or
required, but never shown

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