Debugger.pauseOnAsyncCallNo description available.
| Name | Type | Description |
|---|---|---|
parentStackTraceId | Runtime.StackTraceId | Debugger will pause when async call with given stack trace is started. |
{
"id": 1,
"method": "Debugger.pauseOnAsyncCall",
"params": {
"parentStackTraceId": "parentStackTraceId-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Debugger.pauseOnAsyncCall', {"parentStackTraceId": "parentStackTraceId-value"});
console.log(result);