module ToleranceForSeleniumSyncIssues

Constants

RETRY_ERRORS

Public Instance Methods

patiently(seconds = CapybaraWrapper.default_max_wait_time, &block) click to toggle source
# File lib/spreewald_support/tolerance_for_selenium_sync_issues.rb, line 69
def patiently(seconds = CapybaraWrapper.default_max_wait_time, &block)
  if page.driver.wait?
    Patiently.new.patiently(seconds, &block)
  else
    block.call
  end
end