DOMDebugger.removeInstrumentationBreakpointRemoves breakpoint on particular native event.
| Name | Type | Description |
|---|---|---|
eventName | string | Instrumentation name to stop on. |
{
"id": 1,
"method": "DOMDebugger.removeInstrumentationBreakpoint",
"params": {
"eventName": "eventName-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('DOMDebugger.removeInstrumentationBreakpoint', {"eventName": "eventName-value"});
console.log(result);