#frontend-development
Read more stories on Hashnode
Articles with this tag
Introduction In previous tutorials, we learnt some basic concepts of testing with Playwright. So in this tutorial, we will put some of the concepts...
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...
Playwright locators and selectors To interact with elements, you need to locate the element first. Selectors are used when locating an element. Then...
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...
Using Playwright test generator (codegen) Playwright has a feature that allows us to generate tests scripts by interacting with web apps...
What is Playwright? From the documentation’s definition, Playwright is a tool that “enables reliable end-to-end testing for modern web apps”. What...