Sha256: c6602ff906d5a08ea1db3cda608cf8bcf5edbc2f99ead19b9fba67298f4f9518
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
module Watir module Wait class Timer def initialize(timeout: nil) @end_time = current_time + timeout if timeout @remaining_time = @end_time - current_time if @end_time end # # Executes given block until it returns true or exceeds timeout. # @param [Integer] timeout # @yield block # @api private # def wait(timeout, &block) end_time = @end_time || current_time + timeout loop do yield(block) @remaining_time = end_time - current_time break if @remaining_time < 0 end end def remaining_time @end_time - current_time end def reset! @end_time = nil end def locked? !@end_time.nil? end private if defined?(Process::CLOCK_MONOTONIC) def current_time Process.clock_gettime(Process::CLOCK_MONOTONIC) end else def current_time ::Time.now.to_f end end end # Timer end # Wait end # Watir
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-6.10.1 | lib/watir/wait/timer.rb |