Emulation.setNavigatorOverridesOverrides value returned by the javascript navigator object.
| Name | Type | Description |
|---|---|---|
platform | string | The platform navigator.platform should return. |
{
"id": 1,
"method": "Emulation.setNavigatorOverrides",
"params": {
"platform": "platform-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Emulation.setNavigatorOverrides', {"platform": "platform-value"});
console.log(result);