Emulation.setDevicePostureOverrideStart reporting the given posture value to the Device Posture API. This override can also be set in setDeviceMetricsOverride().
| Name | Type | Description |
|---|---|---|
posture | DevicePosture |
{
"id": 1,
"method": "Emulation.setDevicePostureOverride",
"params": {
"posture": "posture-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Emulation.setDevicePostureOverride', {"posture": "posture-value"});
console.log(result);