Sha256: 58da15b782034b5d66fa66b6a0dc9bbc20ba82db1f2fd6d48fad7fc616f30748
Contents?: true
Size: 709 Bytes
Versions: 32
Compression:
Stored size: 709 Bytes
Contents
module Selenium module WebDriver class Timeouts def initialize(bridge) @bridge = bridge end # # Set the amount of time the driver should wait when searching for elements. # def implicit_wait=(seconds) @bridge.setImplicitWaitTimeout Integer(seconds * 1000) end # # Sets the amount of time to wait for an asynchronous script to finish # execution before throwing an error. If the timeout is negative, then the # script will be allowed to run indefinitely. # def script_timeout=(seconds) @bridge.setScriptTimeout Integer(seconds * 1000) end end # Timeouts end # WebDriver end # Selenium
Version data entries
32 entries across 32 versions & 2 rubygems