Sha256: a8e0dd4d7fe02e9f62f6c946f204dfa576ea4d9c852d3fa1011cb993a05c2992
Contents?: true
Size: 1.48 KB
Versions: 15
Compression:
Stored size: 1.48 KB
Contents
# coding: UTF-8 module ToleranceForSeleniumSyncIssues RETRY_ERRORS = %w[ Capybara::ElementNotFound Spec::Expectations::ExpectationNotMetError RSpec::Expectations::ExpectationNotMetError Minitest::Assertion Capybara::Poltergeist::ClickFailed Capybara::ExpectationNotMet Selenium::WebDriver::Error::StaleElementReferenceError Selenium::WebDriver::Error::NoAlertPresentError Selenium::WebDriver::Error::ElementNotVisibleError Selenium::WebDriver::Error::NoSuchFrameError Selenium::WebDriver::Error::NoAlertPresentError ] # 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
15 entries across 15 versions & 1 rubygems