#software-testing
Read more stories on Hashnode
Articles with this tag
There are options to configure how Playwright functions in our test. In this tutorial, we will not focus on these configurations options rather, we...
Playwright Assertions Playwright make use of expect library (provided by Jest) for assertions. The library provides different types of matchers like...
To screenshot, make use of page.screenshot({ path: 'screenshot/screenshot.png' }) Full page screenshots Full page screenshot is a screenshot of a full...
Playwright can record videos for all pages in a browser context. A BrowserContext is an isolated incognito-alike session within a browser. Just like...
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...