Is there a method to adjust the browser zoom level while running an end-to-end test? I attempted the following code without success.
await page.keyboard.down('Control');
for (let i = 0; i < 7; i++) {
await page.keyboard.press('+');
}
await page.keyboard.up('Control');