X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f64a44536ad550ba4424a7f34f7358938b0e4dcc..b91db14a4dced9d6ea124e86be3c796e6f2c8e8c:/apps/workbench/test/integration_helper.rb diff --git a/apps/workbench/test/integration_helper.rb b/apps/workbench/test/integration_helper.rb index 88aec2ca69..a8788ceb53 100644 --- a/apps/workbench/test/integration_helper.rb +++ b/apps/workbench/test/integration_helper.rb @@ -4,10 +4,24 @@ require 'capybara/poltergeist' require 'uri' require 'yaml' +module WaitForAjax + Capybara.default_wait_time = 5 + def wait_for_ajax + Timeout.timeout(Capybara.default_wait_time) do + loop until finished_all_ajax_requests? + end + end + + def finished_all_ajax_requests? + page.evaluate_script('jQuery.active').zero? + end +end + class ActionDispatch::IntegrationTest # Make the Capybara DSL available in all integration tests include Capybara::DSL include ApiFixtureLoader + include WaitForAjax @@API_AUTHS = self.api_fixture('api_client_authorizations') @@ -22,4 +36,16 @@ class ActionDispatch::IntegrationTest q_string = URI.encode_www_form('api_token' => api_token) "#{path}#{sep}#{q_string}" end + + # Find a page element, but return false instead of raising an + # exception if not found. Use this with assertions to explain that + # the error signifies a failed test rather than an unexpected error + # during a testing procedure. + def find? *args + begin + find *args + rescue Capybara::ElementNotFound + false + end + end end