session.end command

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

Syntax

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

Parameters

None. However, an empty params object {} must be sent.

Return value

None.

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