Debugger.setBlackboxExecutionContextsReplace previous blackbox execution contexts with passed ones. Forces backend to skip stepping/pausing in scripts in these execution contexts. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
| Name | Type | Description |
|---|---|---|
uniqueIds | array | Array of execution context unique ids for the debugger to ignore. |
{
"id": 1,
"method": "Debugger.setBlackboxExecutionContexts",
"params": {
"uniqueIds": []
}
}
{
"id": 1,
"result": {}
}
const result = await send('Debugger.setBlackboxExecutionContexts', {"uniqueIds": []});
console.log(result);