Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 16, 2023 01:08 pm GMT

Playwright Tutorial for Beginners 8 - Screenshots

To screenshot, make use of page.screenshot({ path: 'screenshot/screenshot.png' })

Full page screenshots

Full page screenshot is a screenshot of a full scrollable page, as if you had a very tall screen and the page could fit it entirely.

await page.screenshot({ path: 'screenshot.png', fullPage: true });

Element screenshots

You can also take screenshots of elements too:

await page.locator('.header').screenshot({ path: 'screenshot.png' });

An example

const { test } = require('@playwright/test');test('Demo video', async ({ page }) => {  await page.goto('https://playwright.dev');  await page.screenshot({ path: 'screenshot.png' });});

screenshot.png


Original Link: https://dev.to/zt4ff_1/playwright-tutorial-for-beginners-8-screenshots-4h69

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To