1 · can start · Core
Why Playwright, and what it actually does
~1 h

A full working course on Playwright with TypeScript for QA engineers in large professional-services firms (Big 4 and similar). It covers the same ground as a comprehensive "zero to hero" Playwright curriculum: TypeScript essentials for test code, installation and project layout, running and debugging (CLI, UI mode, Inspector, codegen, Trace Viewer), locators and the strictness rule, web-first assertions, auto-waiting and the timeout hierarchy, every common UI component (inputs, checkboxes, radios, dropdowns, tooltips, dialogs, tables, date pickers, sliders, iframes), the Page Object Model and a scalable page architecture, custom fixtures, configuration and projects, environment variables and mobile emulation, authentication reuse through storageState, artifacts and reporters, visual regression testing, API requests, network interception and mocking, parallelism, retries, tags and flakiness control, Docker and CI on GitHub Actions. Every topic is taught the same way: the problem that exists without the feature, the feature that solves it, and the price you pay for using it. The course is written for people who will maintain a suite on a client engagement for years, not for people writing a demo test once — so review criteria, evidence for audit, secret handling and cost of maintenance are part of the material, not an appendix. By the end you should be able to build and maintain a Playwright suite unaided, and to pass an external certification-style exam on the same syllabus.
Path through the course · 27 units
any order · units can be taken in any order you likeView: map · steps
1 · can start · Core
Why Playwright, and what it actually does
~1 h
2 · can start · Core
The TypeScript you actually need for test code
~1.5 h
3 · can start · Core
Installing Playwright and laying out the project
~1 h
4 · can start · Core
Running and debugging: CLI, UI mode, Inspector, codegen, Trace Viewer
~1.5 h
5 · can start · Core
The anatomy of a test: describe, hooks, steps, annotations
~1 h
6 · can start · Core
Locator syntax: CSS, text, XPath and chaining
~1 h
7 · can start · Core
User-facing locators and the strictness rule
~1.5 h
8 · can start · Core
Filtering, relationships and lists of elements
~1 h
9 · can start · Core
Assertions and extracting values
~1.5 h
10 · can start · Core
Auto-waiting and the timeout hierarchy
~1.5 h
11 · can start · UI components
Text inputs, keyboard and mouse
~1 h
12 · can start · UI components
Checkboxes, radios, dropdowns and tooltips
~1.5 h
13 · can start · UI components
Dialogs, alerts and web tables
~1.5 h
14 · can start · UI components
Date pickers, sliders and iframes
~1.5 h
15 · can start · Architecture
Page Object Model: the first objects
~1.5 h
16 · can start · Architecture
Page architecture: base helpers and a page manager
~1.5 h
17 · can start · Architecture
Fixtures: built-in, custom, and worker-scoped
~1.5 h
18 · can start · Architecture
Configuration, projects, environments and mobile emulation
~1.5 h
19 · can start · Architecture
Authentication once: setup projects, storageState and API login
~1.5 h
20 · can start · Evidence
Evidence: screenshots, video, traces and reporters
~1 h
21 · can start · Evidence
~1 h
22 · can start · API
~1.5 h
23 · can start · API
Network interception and mocking
~1.5 h
24 · can start · Scale
Parallelism, retries, tags and flakiness
~1.5 h
25 · can start · Scale
Docker and continuous integration
~1.5 h
26 · can start · Review
Confusion pairs and exam readiness
~1.5 h
27 · can start · Review
Delivery practice: strategy, review and evidence on an engagement
~1.5 h
ANY
0 / 1
2 OF 3
0 / 2
3 OF 5
0 / 3
final
Exam
closed
| 1 | Why Playwright, and what it actually does Explain the two failure modes of legacy UI automation — timing flakiness and driver overhead — and how Playwright's architecture removes each | ~1 h | can start |
| 2 | The TypeScript you actually need for test code Read and write the JavaScript constructs that appear in every Playwright test: const/let, arrow functions, template literals, destructuring, objects and arrays | ~1.5 h | can start |
| 3 | Installing Playwright and laying out the project Install Playwright into a new repository and into an existing front-end repository without breaking either | ~1 h | can start |
| 4 | Running and debugging: CLI, UI mode, Inspector, codegen, Trace Viewer Run the suite, a file, a single test and a tagged subset from the command line | ~1.5 h | can start |
| 5 | The anatomy of a test: describe, hooks, steps, annotations Structure a spec file with describe blocks and the four hooks, and say when each hook runs relative to workers | ~1 h | can start |
| 6 | Locator syntax: CSS, text, XPath and chaining Read the DOM vocabulary a locator depends on: tag, attribute, class, id, text node, parent and child | ~1 h | can start |
| 7 | User-facing locators and the strictness rule Apply the locator priority order: role, label, placeholder, text, alt, title, test id, CSS or XPath last | ~1.5 h | can start |
| 8 | Filtering, relationships and lists of elements Use filter() with hasText, hasNotText, has and hasNot to narrow a set by content or by a descendant | ~1 h | can start |