DOMDebugger.removeDOMBreakpointRemoves DOM breakpoint that was set using `setDOMBreakpoint`.
| Name | Type | Description |
|---|---|---|
nodeId | DOM.NodeId | Identifier of the node to remove breakpoint from. |
type | DOMBreakpointType | Type of the breakpoint to remove. |
{
"id": 1,
"method": "DOMDebugger.removeDOMBreakpoint",
"params": {
"nodeId": 1,
"type": "type-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('DOMDebugger.removeDOMBreakpoint', {"nodeId": 1, "type": "type-value"});
console.log(result);