Input.setIgnoreInputEventsIgnores input events (useful while auditing page).
| Name | Type | Description |
|---|---|---|
ignore | boolean | Ignores input events processing when set to true. |
{
"id": 1,
"method": "Input.setIgnoreInputEvents",
"params": {
"ignore": true
}
}
{
"id": 1,
"result": {}
}
const result = await send('Input.setIgnoreInputEvents', {"ignore": true});
console.log(result);