← Back to Network domain
Network.getSecurityIsolationStatus
Returns information about the COEP/COOP isolation status.
Domain: Network
experimental
Parameters
| Name | Type | Description |
frameId (optional) | Page.FrameId | If no frameId is provided, the status of the target is provided. |
Returns
| Name | Type | Description |
status | SecurityIsolationStatus | |
Example Request
{
"id": 1,
"method": "Network.getSecurityIsolationStatus"
}
Example Response
{
"id": 1,
"result": {
"status": "status-value"
}
}
Usage in Node.js
const result = await send('Network.getSecurityIsolationStatus');
console.log(result);
// {"status": "status-value"}