How to Set Up Playwright Locally
Let’s start by creating a new directory and navigating to it. Assuming you already have Node.js available in your local environment, installing Playwright is achieved with just one instruction:
Playwright comes bundled with a connected browser, so we now have all we need to run our first script. Let’s create a script to navigate to our test website:
Run this example as follows:
Nothing much has happened, right? Remember: by default, Playwright will run in headless mode! That means we won’t see anything of what is happening in the browser when our script runs.
Playwright creates its own browser user profile, which it cleans up on every run. In other words: all runs will be sandboxed and not interfere with one another, as state is always fully reset at the end of a session.
When you are first writing and debugging your scripts, it is a good idea to enable “headed” mode, so you can have a look at what your script is doing:
After executing the updated file, you will see Chromium starting up, only to shut down after an instant. Everything is working as expected! Our script is just so short, it runs almost instantaneously.
Further reading
- Getting started guides for Playwright