1
0
mirror of https://github.com/danbee/danbarberphoto synced 2025-03-04 08:49:07 +00:00
danbarberphoto/spec/support/ajax.rb
2021-07-16 11:15:26 -05:00

11 lines
213 B
Ruby

module Ajax
def wait_for_ajax
Timeout.timeout(Capybara.default_max_wait_time) do
loop do
active = page.evaluate_script("jQuery.active")
break if active == 0
end
end
end
end