Sha256: 527911e188138e1dce8718a4e2161d91a0df7b03353fa5f996b4cb25bf45aed2
Contents?: true
Size: 1.14 KB
Versions: 3
Compression:
Stored size: 1.14 KB
Contents
# coding: UTF-8 module ToleranceForSeleniumSyncIssues RETRY_ERRORS = %w[Capybara::ElementNotFound Spec::Expectations::ExpectationNotMetError RSpec::Expectations::ExpectationNotMetError Capybara::Poltergeist::ClickFailed] # This is similiar but not entirely the same as Capybara::Node::Base#wait_until or Capybara::Session#wait_until def patiently(seconds=Capybara.default_wait_time, &block) old_wait_time = Capybara.default_wait_time # dont make nested wait_untils use up all the alloted time Capybara.default_wait_time = 0 # for we are a jealous gem if page.driver.wait? start_time = Time.now begin block.call rescue Exception => e raise e unless RETRY_ERRORS.include?(e.class.name) raise e if (Time.now - start_time) >= seconds sleep(0.05) raise Capybara::FrozenInTime, "time appears to be frozen, Capybara does not work with libraries which freeze time, consider using time travelling instead" if Time.now == start_time retry end else block.call end ensure Capybara.default_wait_time = old_wait_time end end World(ToleranceForSeleniumSyncIssues)
Version data entries
3 entries across 3 versions & 1 rubygems