What's Really Happening with Playwright Right Now
Playwright crossed over from "nice differentiator" to "default expectation" faster than any test tool in the last decade. What changed in the last year is who is asking for it: it is no longer only product startups. Enterprises running long Selenium estates now open greenfield projects in Playwright while keeping legacy suites alive, so the highest-value profile in the market right now is someone bilingual in both. The other real shift is scope — Playwright roles increasingly include API testing via its request context, visual snapshots, and trace-based debugging, so employers expect one person to cover ground that used to be three tools.
What we'd actually recommend
Learn the trace viewer properly before you learn another API method. The single fastest way to look senior in a Playwright interview is to describe how you debug: open the trace, scrub to the failing action, read the DOM snapshot at that moment, check the network tab inside the trace, and identify whether the failure was app, data, or test. Second recommendation: adopt fixtures and the page object only where they earn their keep. Teams that ported Selenium-style deep page-object hierarchies into Playwright generally ended up with slower, harder-to-read suites than teams that used typed fixtures and web-first assertions directly.
The pitfall: assuming auto-waiting means you cannot write flaky tests
Candidates repeat "Playwright has auto-waiting so there is no flakiness" almost verbatim, and it is wrong in a way interviewers enjoy exposing. Auto-waiting covers actionability of an element; it knows nothing about your backend finishing a background job, your seeded user being deleted by a parallel worker, or an animation that moves an element after it becomes actionable. Flakiness simply relocates from waits to test data and parallelism. Anyone who has run Playwright across eight workers in CI knows this; anyone who has only run it locally in headed mode does not, and the difference shows in about two questions.