demarches-normaliennes/spec/support/wait_for_ajax.rb

16 lines
324 B
Ruby
Raw Normal View History

module WaitForAjax
def wait_for_ajax
2016-11-14 17:50:06 +01:00
Timeout.timeout(Capybara.default_max_wait_time) do
loop until finished_all_ajax_requests?
end
end
def finished_all_ajax_requests?
page.evaluate_script('jQuery.active').zero?
end
end
RSpec.configure do |config|
config.include WaitForAjax, type: :feature
end