quit method
- bool closeSession = true,
Quits the browser.
Implementation
Future<void> quit({bool closeSession = true}) async {
if (!closeSession) {
return;
}
await _client.send(_handler.core.buildDeleteSessionRequest(),
_handler.core.parseDeleteSessionResponse);
_client.close();
}