Welcome to mirror list, hosted at ThFree Co, Russian Federation.

wait_for_ajax.rb « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b90fc1126716d1511e5af745ef3e28026ce3bef6 (plain)
1
2
3
4
5
6
7
8
9
10
11
module WaitForAjax
  def wait_for_ajax
    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