import { test, expect } from '@playwright/test'; test('example test', async ({ page }) => { await page.goto('http://localhost:8081/blog/02_compiler_parsing/index.html'); await expect(page).toHaveScreenshot({ fullPage: true }); });