class Selenium::WebDriver::Wait
Constants
- DEFAULT_INTERVAL
- DEFAULT_TIMEOUT
Public Class Methods
new(opts = {})
click to toggle source
Create a new Wait
instance
@param [Hash] opts Options
for this instance @option opts [Numeric] :timeout (5) Seconds to wait before timing out. @option opts [Numeric] :interval (0.2) Seconds to sleep between polls. @option opts [String] :message Exception mesage if timed out. @option opts [Array, Exception] :ignore Exceptions to ignore while polling (default: Error::NoSuchElementError
)
# File lib/selenium/webdriver/common/wait.rb, line 36 def initialize(opts = {}) @timeout = opts.fetch(:timeout, DEFAULT_TIMEOUT) @interval = opts.fetch(:interval, DEFAULT_INTERVAL) @message = opts[:message] @ignored = Array(opts[:ignore] || Error::NoSuchElementError) end
Public Instance Methods
until() { || ... }
click to toggle source
Wait
until the given block returns a true value.
@raise [Error::TimeoutError] @return [Object] the result of the block
# File lib/selenium/webdriver/common/wait.rb, line 50 def until end_time = current_time + @timeout last_error = nil until current_time > end_time begin result = yield return result if result rescue *@ignored => last_error # rubocop:disable Naming/RescuedExceptionsVariableName # swallowed end sleep @interval end msg = if @message @message.dup else "timed out after #{@timeout} seconds" end msg << " (#{last_error.message})" if last_error raise Error::TimeoutError, msg end
Private Instance Methods
current_time()
click to toggle source
# File lib/selenium/webdriver/common/wait.rb, line 78 def current_time Process.clock_gettime(Process::CLOCK_MONOTONIC) end