← Back to EventBreakpoints domain

EventBreakpoints.removeInstrumentationBreakpoint

Removes breakpoint on particular native event.

Domain: EventBreakpoints experimental

Parameters

NameTypeDescription
eventNamestringInstrumentation name to stop on.

Example Request

{
  "id": 1,
  "method": "EventBreakpoints.removeInstrumentationBreakpoint",
  "params": {
    "eventName": "eventName-value"
  }
}

Example Response

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

Usage in Node.js

const result = await send('EventBreakpoints.removeInstrumentationBreakpoint', {"eventName": "eventName-value"});
console.log(result);