Timeouts Class
Timeouts object
Inheritance Hierarchy
SystemObject
  SeleniumTimeouts

Namespace: Selenium
Assembly: Selenium (in Selenium.dll) Version: 2.0.9.0 (2.0.9.0)
Syntax
VB Usage
Dim instance As Timeouts

The Timeouts type exposes the following members.

Constructors
  NameDescription
Public methodTimeouts
Initializes a new instance of the Timeouts class
Top
Properties
  NameDescription
Public propertyImplicitWait
Amount of time that Selenium will wait for waiting commands to complete
Public propertyPageLoad
Amount of time the driver should wait while loading a page before throwing an exception.
Public propertyScript
Amount of time the driver should wait while executing an asynchronous script before throwing an error.
Public propertyServer
Maximum amount of time the driver should wait while waiting for a response from the server.
Top
Examples
Sets the implicit timout to 1 second
VB
driver.Timeouts.ImplicitWait = 1000
See Also