Playwright Test
ELI5 — The Vibe Check
Playwright Test is Microsoft's end-to-end testing framework that controls real browsers like a puppet master. It can test in Chrome, Firefox, and Safari simultaneously, take screenshots, record videos, and even test mobile viewports. It's like hiring three QA testers who work in perfect synchronization across all browsers.
Real Talk
A cross-browser end-to-end testing framework by Microsoft that provides auto-waiting, web-first assertions, and built-in parallelism. It supports Chromium, Firefox, and WebKit, offers trace viewing for debugging, and includes codegen for recording user interactions as test scripts.
When You'll Hear This
"Playwright Test runs our e2e suite across 3 browsers in parallel — total CI time is 4 minutes." / "The trace viewer in Playwright Test shows exactly what happened on each step when a test fails."
Related Terms
Cypress
Selenium drives a browser like a confused tourist with a map.
Happy DOM
Happy DOM is a fake browser environment that lives in Node.js. It's like JSDOM but faster and happier (hence the name). When you need to test components th
Testcontainers
Instead of mocking your database in tests, Testcontainers spins up a REAL database in a Docker container, runs your tests against it, then throws it away.