Skip to content

Anki Playwright Agents Practice Exam

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.

📝 50 questions · ⏱ 60 minutes · 🎯 Pass mark 70% · 🆓 Free, no signup

Exam details

  • 50 questions drawn from 288 cards
  • Countdown timer — auto-submits when time runs out
  • Pass mark 70% (real certification threshold)
  • Full review of wrong answers at the end
  • No signup required — save your score with a free account

Sample Questions

5 shown

Playwright (Node): minimal setup?

Show ▼

npm i -D @playwright/test
npx playwright install
npx playwright test

Where do Playwright tests live?

Show ▼

Common: ./tests or ./e2e (you choose). Configure testDir in playwright.config.ts so agents know where to add new tests.

Key playwright.config.ts settings?

Show ▼

use.baseURL, webServer (start app), projects (chromium/firefox/webkit), retries/workers, reporter (html + junit), trace/video/screenshot policies.

How do I auto-start my app for tests?

Show ▼

Use playwright.config.ts webServer: { command: "npm run dev", url: "http://127.0.0.1:3000", reuseExistingServer: !process.env.CI }.

Run one test or one spec?

Show ▼

npx playwright test tests/foo.spec.ts
npx playwright test -g "test name"

🎯 Take the Anki Playwright Agents Practice Exam