← Back to Network domain

Network.disable

Disables network tracking, prevents network events from being sent to the client.

Domain: Network stable

Example Request

{
  "id": 1,
  "method": "Network.disable"
}

Example Response

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

Usage in Node.js

const result = await send('Network.disable');
console.log(result);