Is there a away to set the viewport of individual page in playwright test?

Is there a away to set the viewport of individual page in playwright test?

Hello,

Yes, you can use the below line of code to do that.

await page.setViewportSize({ width: 1600, height: 1200 });