Getting Started

Installation

Use npm or Yarn to install Playwright in your Node.js project. Playwright requires Node.js 10 or higher.

  1. npm i -D playwright

During installation, Playwright downloads browser binaries for Chromium, Firefox and WebKit. This sets up your environment for browser automation with just one command. It is possible to modify this default behavior for monorepos and other scenarios. See installation parameters for mode details.

Usage

Once installed, you can require Playwright in a Node.js script, and launch any of the 3 browsers (chromium, firefox and webkit).

  1. const { chromium } = require('playwright');
  2. (async () => {
  3. const browser = await chromium.launch();
  4. // Create pages, interact with UI elements, assert values
  5. await browser.close();
  6. })();

Playwright APIs are asynchronous and return Promise objects. Our code examples use the async/await pattern to simplify comprehension. The code is wrapped in an unnamed async arrow function which is invoking itself.

  1. (async () => { // Start of async arrow function
  2. // Function code
  3. // ...
  4. })(); // End of the function and () to invoke itself

First script

In our first script, we will navigate to whatsmyuseragent.org and take a screenshot in WebKit.

  1. const { webkit } = require('playwright');
  2. (async () => {
  3. const browser = await webkit.launch();
  4. const page = await browser.newPage();
  5. await page.goto('http://whatsmyuseragent.org/');
  6. await page.screenshot({ path: `example.png` });
  7. await browser.close();
  8. })();

By default, Playwright runs the browsers in headless mode. To see the browser UI, pass the headless: false flag while launching the browser. You can also use slowMo to slow down execution.

  1. firefox.launch({ headless: false, slowMo: 50 });

System requirements

Playwright requires Node.js version 10.15 or above. The browser binaries for Chromium, Firefox and WebKit work across the 3 platforms (Windows, macOS, Linux):

  • Windows: Works with Windows and Windows Subsystem for Linux (WSL).
  • macOS: Requires 10.14 or above.
  • Linux: Depending on your Linux distribution, you might need to install additional dependencies to run the browsers.
    • For Ubuntu 18.04, the additional dependencies are defined in our Docker image, which is based on Ubuntu.

Debugging scripts

Playwright scripts can be developed just like any other Node.js script. For example, you can use the Node.js debugger or VS Code debugging to set breakpoints and get fine grained control over execution.

Chromium Developer Tools

It is also possible to open browser developer tools during execution, to inspect the DOM tree or network activity.