This repository contains the Automation Panda's official Playwright tutorial!
In this tutorial, you will progressively create and build a new test automation project using Playwright in TypeScript. This GitHub repository provides:
- an
app
directory with the web app to test - a
tutorial
directory with all instructions by chapter - a
chapter-code
directory with example code for each chapter
You will need the following tools:
- A recent version of Node.js.
- A good editor like Visual Studio Code with the Playwright extension.
- A GitHub account with a Git client.
Before starting this tutorial, clone this repository to your machine and set up the project:
# Clone the repository git clone https://github.com/AutomationPanda/awesome-web-testing-playwright.git # Change directory into the web app directory cd awesome-web-testing-playwright/app # Install the dependencies npm install # Initialize Playwright npm init playwright@latest
Choose the default options for each prompt. Choose YES to install the Playwright browsers. This tutorial was created with Playwright 1.36.1, but later versions of Playwright should be okay to use.
Warning: Complete these steps before taking this tutorial as part of a live session (like at a conference or a webinar). The Playwright browsers are a few hundred MBs large, and you could fall behind if you are stuck waiting for slow downloads over WiFi.
There are eight chapters in total:
- Setting modern web testing goals
- Exploring Playwright's features
- Writing our first test
- Refactoring interactions with page objects
- Breaking down tests by behaviors
- Scaling tests with parallel execution
- Running tests with GitHub Actions
- Learning and practicing more
Chapter-by-chapter tutorial instructions are provided under the tutorial
folder.
This repository also contains each chapter's example code under the chapter-code
folder.
Go to Chapter 1 to start the tutorial!