Articles in this series
What is Playwright? From the documentation’s definition, Playwright is a tool that “enables reliable end-to-end testing for modern web apps”. What...
Using Playwright test generator (codegen) Playwright has a feature that allows us to generate tests scripts by interacting with web apps...
In this tutorial, we will learn about another GUI tool provided by Playwright called the Trace Viewer. The Playwright Trace Viewer is a GUI tool that...
Playwright locators and selectors To interact with elements, you need to locate the element first. Selectors are used when locating an element. Then...
Test input You can easily fill-out form fields with page.fill(). page.fill() focuses on the element and triggers an input event with the specified...
Introduction In previous tutorials, we learnt some basic concepts of testing with Playwright. So in this tutorial, we will put some of the concepts...