Test yourself under real exam conditions: 50 timed questions, 60 on the clock, pass mark 70%%. Instant score with a full review of everything you got wrong. Free — no account needed.
Exam details
npm i -D @playwright/test
npx playwright install
npx playwright test
Common: ./tests or ./e2e (you choose). Configure testDir in playwright.config.ts so agents know where to add new tests.
use.baseURL, webServer (start app), projects (chromium/firefox/webkit), retries/workers, reporter (html + junit), trace/video/screenshot policies.
Use playwright.config.ts webServer: { command: "npm run dev", url: "http://127.0.0.1:3000", reuseExistingServer: !process.env.CI }.
npx playwright test tests/foo.spec.ts
npx playwright test -g "test name"