mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
11 lines
213 B
Ruby
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
|