← Back to Overlay domain

Overlay.setShowIsolatedElements

Show elements in isolation mode with overlays.

Domain: Overlay experimental

Parameters

NameTypeDescription
isolatedElementHighlightConfigsarrayAn array of node identifiers and descriptors for the highlight appearance.

Example Request

{
  "id": 1,
  "method": "Overlay.setShowIsolatedElements",
  "params": {
    "isolatedElementHighlightConfigs": []
  }
}

Example Response

{
  "id": 1,
  "result": {}
}

Usage in Node.js

const result = await send('Overlay.setShowIsolatedElements', {"isolatedElementHighlightConfigs": []});
console.log(result);