session.end command

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Want more browser support for this feature? Tell us why.

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

Syntax

json
{
  "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:

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

The browser responds with:

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

The success response is received before the WebSocket connection closes.

Specifications

Specification
WebDriver BiDi
# command-session-end

Browser compatibility

See also