← Back to Network domain

Network.getSecurityIsolationStatus

Returns information about the COEP/COOP isolation status.

Domain: Network experimental

Parameters

NameTypeDescription
frameId (optional)Page.FrameIdIf no frameId is provided, the status of the target is provided.

Returns

NameTypeDescription
statusSecurityIsolationStatus

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"}