Emulation.setCPUThrottlingRateEnables CPU throttling to emulate slow CPUs.
| Name | Type | Description |
|---|---|---|
rate | number | Throttling rate as a slowdown factor (1 is no throttle, 2 is 2x slowdown, etc). |
{
"id": 1,
"method": "Emulation.setCPUThrottlingRate",
"params": {
"rate": 1.0
}
}
{
"id": 1,
"result": {}
}
const result = await send('Emulation.setCPUThrottlingRate', {"rate": 1.0});
console.log(result);