Advanced Visual Testing with Playwright
If you want to improve your test automation strategy with visual tests, Dipen Chavan shows how to implement them using Playwright and other tools.
Also, Debbie O'Brien shares a tip about Handling Visibility in Playwright: getByText vs. getByRole.
Automating Accessibility Checks Using Playwright
Want to know how to test your web app for accessibility? Thara Perera shows how to achieve that with Playwright and axe-core.
Moreover, Tolga Ulusoy explains why we should Use await expect(locator).toHaveText()
Instead of expect(await locator.textContent())
in Playwright.
Why you should never use page.waitForTimeout() in Playwright
We should always be careful when using waits in tests. Nočnica Mellifera explains why it's important in Playwright as well.
Moreover, Navanishan Reddy L. shows a helpful example of Intercepting Network Requests in Playwright.
Playwright Release 1.51: Smarter Debugging, Enhanced Reports & More!
Playwright 1.51 is out and Debbie O'Brien tells us about the latest features that were introduced to make testing even more efficient.
Playwright Test Automation: POM, BDD & DDT Architectures
Do you know these concepts? Senanur Korkmaz uses examples to demonstrate how to implement them in Playwright tests.
AI-Driven Test Automation with Playwright + Cursor + MCP Server
Last week, I mentioned the official Playwright MCP server release by Microsoft. And now, Joan Esquivel Montero shows how to use it in this insightful 20-minute overview.
I also recommend watching Joan's previous tutorial on Integrating Playwright with Claude AI from Scratch.
Playwright MCP Server: Zero-Code Testing Magic with Cline & Cursor
Have you heard of Playwright MCP? Karthik K.K. demonstrates the abilities of this open-source implementation of MCP protocol for AI-powered browser automation using Playwright.
You can also watch examples of using it for No-Code API, UI & DB Testing and No-Code BDD Testing.
Playwright Trace Viewer — Copy as Playwright API Request
With the latest release of Playwright's 1.50 version, you can now copy API requests as Playwright code, which is a very handy feature if you're writing API tests. Butch Mayhew shows how to use it.
How to combine Fixtures & Page Object Models for DRYer test code in Playwright
Nočnica Mellifera demonstrates how to simplify page objects in the test code with the help of fixtures in Playwright.
Furthermore, Dheeraj Gambhir gives a short overview of using ARIA Snapshot in Playwright.
Organizing Playwright Tests Effectively
Struggling with test maintenance? Debbie O'Brien wrote a wonderful article outlining the practical way of structuring and handling your Playwright tests.
Moreover, Butch Mayhew put together a helpful guide on How to Run a Specific Spec File in Playwright Tests Sequentially.