Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mohamedkhallouq
GitHub Repository: mohamedkhallouq/content
Path: blob/main/files/en-us/web/webdriver/commands/gettimeouts/index.md
6552 views
---
title: Get Timeouts slug: Web/WebDriver/Commands/GetTimeouts browser-compat: webdriver.commands.GetTimeouts
---

{{QuickLinksWithSubpages("/en-US/docs/Web/WebDriver/Commands")}}

The Get Timeouts command of the WebDriver API returns the timeouts associated with the current session. The session timeout durations control such behavior as timeouts on script injection, document navigation, and element retrieval.

Syntax

MethodURI template
GET/session/{session id}/timeouts

URL parameters

  • session id

    • : Identifier of the session.

Response

The response payload is a Timeouts object:

  • implicit

    • : Time in milliseconds to retry the element location strategy when finding an element. This defaults to 0, meaning the strategy is run only once.

  • pageLoad

    • : Time in milliseconds to wait for the document to finish loading. By default WebDriver will wait five minutes (or 300,000 ms).

  • script

    • : Scripts injected with Execute Script or Execute Async Script will run until they hit the script timeout duration, which is also given in milliseconds. The scripts will then be interrupted and a script timeout error will be returned. Defaults to 30 seconds (or 30,000 ms).

Errors

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also