Module: RailsExtras::RSpec::Support::WaitForAjax
- Defined in:
- lib/rails_extras/rspec/support/wait_for_ajax.rb
Instance Method Summary collapse
Instance Method Details
#wait_for_ajax ⇒ Object
6 7 8 9 10 11 12 13 |
# File 'lib/rails_extras/rspec/support/wait_for_ajax.rb', line 6 def wait_for_ajax counter = 0 while page.execute_script("return $.active").to_i > 0 counter += 1 sleep(0.1) raise "AJAX request took longer than 3 seconds." if counter >= 30 end end |