Get Timeouts
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
TheGet Timeoutscommand of theWebDriver API returns the timeouts associated with the current session. Thesession timeout durations control such behavior as timeouts onscript injection,document navigation, andelement retrieval.
In this article
Syntax
| Method | URI template |
|---|---|
GET | /session/{session id}/timeouts |
URL parameters
session idIdentifier of the session.
Response
The response payload is aTimeouts object:
implicitTime in milliseconds to retry theelement location strategy when finding an element. This defaults to 0, meaning the strategy is run only once.
pageLoadTime in milliseconds to wait for the document to finish loading. By default WebDriver will wait five minutes (or 300,000 ms).
scriptScripts injected withExecute Script orExecute Async Script will run until they hit the script timeout duration, which is also given in milliseconds. The scripts will then be interrupted and ascript timeout error will be returned. Defaults to 30 seconds (or 30,000 ms).
Errors
- Invalid session ID
Session does not exist.
Specifications
| Specification |
|---|
| WebDriver> # get-timeouts> |
Browser compatibility
See also
Timeoutsobject- Set Timeouts command
- List of WebDriver commands