← Back to Emulation domain

Emulation.clearDevicePostureOverride

Clears a device posture override set with either setDeviceMetricsOverride() or setDevicePostureOverride() and starts using posture information from the platform again. Does nothing if no override is set.

Domain: Emulation experimental

Example Request

{
  "id": 1,
  "method": "Emulation.clearDevicePostureOverride"
}

Example Response

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

Usage in Node.js

const result = await send('Emulation.clearDevicePostureOverride');
console.log(result);