Testing
Playwright Accessibility Testing: axe-core Integration and Best Practices
Playwright's browser automation and axe-core's accessibility engine are a natural pairing. Playwright handles navigation, interaction, and state management.
Testing
Playwright's browser automation and axe-core's accessibility engine are a natural pairing. Playwright handles navigation, interaction, and state management.
Testing
Most teams treat API testing and browser testing as separate concerns — different tools, different test suites, different CI jobs.
Testing
Network calls are one of the biggest sources of flakiness in end-to-end tests.
Testing
A test suite that takes 45 minutes to run provides almost no value — developers stop waiting for it and ship without knowing whether tests pass.
Testing
Visual regressions are the silent killers of web applications. A CSS change that looks fine in isolation can break the layout of a page you never manually checked. Playwright's built-in screenshot comparison (toHaveScreenshot) gives you pixel-level visual regression testing without any external service — just snapshots stored
Testing
Authentication is one of the biggest time sinks in end-to-end test suites.
playwright
Playwright Agents (Planner, Generator, Healer) are free, powerful, and built for developers who already live in the Playwright ecosystem. HelpMeTest is a cloud-hosted alternative with usage-based pricing ($0.003/run) that requires no local setup, works for the whole team, and runs tests on a schedule. They solve
playwright
The most common complaint about E2E test suites is not writing them. It is maintaining them.
playwright
Test generation has been a promise of the browser automation ecosystem for years.
playwright
Playwright v1.50+ ships three first-party AI agents — Planner, Generator, and Healer — that together automate the entire test lifecycle from exploration to repair. They are built into core Playwright, not plugins, and they change how developers write and maintain E2E tests. Key Takeaways Planner explores your app and produces
playwright
Playwright has become the gold standard for browser automation. Released by Microsoft in 2020, it quickly surpassed Selenium and gave Cypress serious competition, offering faster test execution, better support for modern web patterns (shadow DOM, iframes, async operations), and a genuinely excellent developer experience. There's one problem: Playwright
Testing
Playwright is a strong choice for smoke testing. It's fast, handles modern web apps well, and has built-in support for parallel execution, auth state persistence, and multiple browsers. This post walks through building a complete smoke test suite with Playwright, from project setup to CI integration. Project