Skip to content

Commit

Permalink
Selenium: Refactor WaitFor* scripts to prevent crashes
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
MrSerth authored and Dome-GER committed Oct 15, 2024
1 parent c5793ee commit 72ee3d6
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions spec/support/wait_for_ajax.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 72ee3d6

Please sign in to comment.