session.end commandThe session.end command of the session module ends the client's current BiDi session with the browser.
{
"method": "session.end",
"params": {}
}None. However, you must include the params field and set it to an empty object ({}).
The result field in the response is an empty object ({}).
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.
session.new commandsession.status command