Firefox Tomorrow

webdriver command

`session.end` command

View on MDN ↗

The session.end command of the session module ends the client’s current BiDi session with the browser.

Syntax

{
  "method": "session.end",
  "params": {}
}

Parameters

None. However, you must include the params field and set it to an empty object ({}).

Return value

The result field in the response is an empty object ({}).

Examples

Ending an automation session with the browser

With a WebDriver BiDi connection established, send the following message to end the current session:

{
  "id": 2,
  "method": "session.end",
  "params": {}
}

The browser responds with:

{
  "id": 2,
  "type": "success",
  "result": {}
}

The success response is received before the WebSocket connection closes.

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also