← Back to Cast domain

Cast.startTabMirroring

Starts mirroring the tab to the sink.

Domain: Cast experimental

Parameters

NameTypeDescription
sinkNamestring

Example Request

{
  "id": 1,
  "method": "Cast.startTabMirroring",
  "params": {
    "sinkName": "sinkName-value"
  }
}

Example Response

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

Usage in Node.js

const result = await send('Cast.startTabMirroring', {"sinkName": "sinkName-value"});
console.log(result);