← Back to Input domain

Input.setIgnoreInputEvents

Ignores input events (useful while auditing page).

Domain: Input stable

Parameters

NameTypeDescription
ignorebooleanIgnores input events processing when set to true.

Example Request

{
  "id": 1,
  "method": "Input.setIgnoreInputEvents",
  "params": {
    "ignore": true
  }
}

Example Response

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

Usage in Node.js

const result = await send('Input.setIgnoreInputEvents', {"ignore": true});
console.log(result);