Skip to content

Instantly share code, notes, and snippets.

module Pyrite
module Dsl
# Wait for a specific element, the page to load
# or an AJAX request to return
def wait_for(element)
case element
when :page_load
browser.wait_for_page_to_load 10
when :ajax
browser.wait_for(:wait_for => :ajax, :javascript_framework => Pyrite.js_framework)