timeouts

Configure the amount of time that a particular type of operation can execute for before they are aborted and a |Timeout| error is returned to the client.

Usage

1
browser.timeouts(type,ms);

Parameters

Param Type Details
type String The type of operation to set the timeout for. Valid values are:
- script Determines when to interrupt a script that is being evaluated.
- implicit Gives the timeout of when to abort locating an element.
- pageLoad Provides the timeout limit used to interrupt navigation of the browsing context.
The pageLoad keyword is a part of the official WebDriver specification, but might not be supported for your browser (the previous name is page load).
ms Number The amount of time, in milliseconds, that time-limited commands are permitted to run.