Network.canClearBrowserCookiesTells whether clearing browser cookies is supported.
| Name | Type | Description |
|---|---|---|
result | boolean | True if browser cookies can be cleared. |
{
"id": 1,
"method": "Network.canClearBrowserCookies"
}
{
"id": 1,
"result": {
"result": {
"type": "string",
"value": "Example Domain"
}
}
}
const result = await send('Network.canClearBrowserCookies');
console.log(result);
// {"result": {"type": "string", "value": "Example Domain"}}