const { test, expect } = require('@playwright/test');

test('startseite', async ({ page }) => {
  await page.goto('https://www.swr.de/index.html');
  expect(await page.screenshot('body')).toMatchSnapshot('swr.png');
});