← Back to DOMStorage domain

DOMStorage.enable

Enables storage tracking, storage events will now be delivered to the client.

Domain: DOMStorage experimental

Example Request

{
  "id": 1,
  "method": "DOMStorage.enable"
}

Example Response

{
  "id": 1,
  "result": {}
}

Usage in Node.js

const result = await send('DOMStorage.enable');
console.log(result);