From 8465436cd33f4e71021056b557c75c00d75c76a1 Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Fri, 11 Oct 2024 23:43:50 +0200 Subject: [PATCH] Selenium: Refactor WaitFor* scripts to prevent crashes The previously used approach with `Timeout.timeout` works. However, it might interrupt the `page.evaluate_script`, which will cause an unhandled exception with the Selenium webdriver which in turn crashes. Once crashed, all further Selenium-based tests will fail, too. --- spec/support/wait_for_ajax.rb | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/spec/support/wait_for_ajax.rb b/spec/support/wait_for_ajax.rb index ba1678e0c..4ad188137 100644 --- a/spec/support/wait_for_ajax.rb +++ b/spec/support/wait_for_ajax.rb @@ -2,12 +2,19 @@ module WaitForAjax def wait_for_ajax - Timeout.timeout(Capybara.default_max_wait_time) do - loop until ajax_requests_finished? + start_time = Time.current + timeout = Capybara.default_max_wait_time + + loop do + break if ajax_requests_finished? || (Time.current - start_time) > timeout + + sleep 0.1 # Short sleep time to prevent busy waiting end end def ajax_requests_finished? + # This method MUST NOT be interrupted. Hence, Timeout.timeout is not used here. + # Otherwise, Selenium and the browser driver might crash, preventing further tests from running. page.evaluate_script('jQuery.active').zero? end end