Emulation.removeScreenRemove screen from the device. Only supported in headless mode.
| Name | Type | Description |
|---|---|---|
screenId | ScreenId |
{
"id": 1,
"method": "Emulation.removeScreen",
"params": {
"screenId": "screenId-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Emulation.removeScreen', {"screenId": "screenId-value"});
console.log(result);