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