Runtime.releaseObjectGroupReleases all remote objects that belong to a given group.
| Name | Type | Description |
|---|---|---|
objectGroup | string | Symbolic object group name. |
{
"id": 1,
"method": "Runtime.releaseObjectGroup",
"params": {
"objectGroup": "objectGroup-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Runtime.releaseObjectGroup', {"objectGroup": "objectGroup-value"});
console.log(result);