Emulation.setPageScaleFactorSets a specified page scale factor.
| Name | Type | Description |
|---|---|---|
pageScaleFactor | number | Page scale factor. |
{
"id": 1,
"method": "Emulation.setPageScaleFactor",
"params": {
"pageScaleFactor": 1.0
}
}
{
"id": 1,
"result": {}
}
const result = await send('Emulation.setPageScaleFactor', {"pageScaleFactor": 1.0});
console.log(result);