Playwright error browserType.launch: Executable doesn't exist at .../chromium-XXXX/chrome-linux/chrome
Playwright's browser binaries were never installed, or don't match the Playwright version in package.json.
Why this happens
- `npx playwright install` was never run on this machine/CI runner
- package.json's playwright version was bumped but browsers weren't reinstalled to match
How to fix it
- Run `npx playwright install` (add `--with-deps` on Linux CI to also install OS-level libraries)
- In CI, cache the browser binaries keyed to the exact Playwright version, and force a reinstall on a version bump