session.end command

Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

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