2021-01-01 15:17:27 -08:00
---
id: ci
title: "Continuous Integration"
---
2020-12-30 18:04:51 -08:00
Playwright tests can be executed in CI environments. We have created sample
configurations for common CI providers.
2021-01-01 15:17:27 -08:00
<!-- TOC -->
2020-12-30 18:04:51 -08:00
## Introduction
3 steps to get your tests running on CI:
2021-01-03 08:47:29 -08:00
1. **Ensure CI agent can run browsers** : Use [our Docker image ](./docker.md )
2022-03-24 15:08:32 -06:00
in Linux agents or install your dependencies using the [CLI ](./cli.md#install-system-dependencies ).
2021-01-21 16:41:42 -08:00
1. **Install Playwright** :
2021-06-02 09:23:06 -07:00
```bash js
2021-07-09 16:13:33 -07:00
# Install NPM packages
2021-05-11 20:47:48 +02:00
npm ci
2021-01-21 16:41:42 -08:00
# or
2021-05-11 20:47:48 +02:00
npm install
2021-07-09 16:13:33 -07:00
2022-03-24 15:08:32 -06:00
# Install Playwright browsers and dependencies
npx playwright install --with-deps
2021-01-21 16:41:42 -08:00
```
2021-06-02 09:23:06 -07:00
```bash python
2021-05-11 20:47:48 +02:00
pip install playwright
2022-03-24 15:08:32 -06:00
playwright install --with-deps
```
```bash java
mvn exec:java -e -Dexec.mainClass=com.microsoft.playwright.CLI -Dexec.args="install --with-deps"
```
```bash csharp
pwsh bin\Debug\netX\playwright.ps1 install --with-deps
2021-01-21 16:41:42 -08:00
```
1. **Run your tests** :
2021-06-02 09:23:06 -07:00
```bash js
2021-05-11 20:47:48 +02:00
npm test
2021-01-21 16:41:42 -08:00
```
2021-06-02 09:23:06 -07:00
```bash python
2021-05-11 20:47:48 +02:00
pytest
2021-01-21 16:41:42 -08:00
```
2020-12-30 18:04:51 -08:00
## CI configurations
2021-08-23 20:10:12 -07:00
The [Command line tools ](./cli.md#install-system-dependencies ) can be used to install all operating system dependencies on GitHub Actions.
2020-12-30 18:04:51 -08:00
2021-06-23 23:15:00 +02:00
### GitHub Actions
2020-12-30 18:04:51 -08:00
2021-01-21 16:41:42 -08:00
```yml js
2020-12-30 18:04:51 -08:00
steps:
2021-06-23 23:15:00 +02:00
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
2022-01-10 13:30:55 -08:00
- name: Install dependencies
run: npm ci
- name: Install Playwright
run: npx playwright install --with-deps
2020-12-30 18:04:51 -08:00
- name: Run your tests
run: npm test
2022-01-10 13:30:55 -08:00
- name: Upload test results
if: always()
uses: actions/upload-artifact@v2
with:
2022-03-24 15:08:32 -06:00
name: playwright-report
path: playwright-report
2020-12-30 18:04:51 -08:00
```
2021-01-21 16:41:42 -08:00
```yml python
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
2021-02-03 18:10:55 -08:00
pip install playwright
2021-01-21 16:41:42 -08:00
pip install -e .
- name: Ensure browsers are installed
2022-03-24 15:08:32 -06:00
run: python -m playwright install --with-deps
2021-01-21 16:41:42 -08:00
- name: Run your tests
run: pytest
```
2021-12-07 22:58:33 -08:00
We run [our tests ](https://github.com/microsoft/playwright/blob/main/.github/workflows/tests_secondary.yml ) on GitHub Actions, across a matrix of 3 platforms (Windows, Linux, macOS) and 3 browsers (Chromium, Firefox, WebKit).
2020-12-30 18:04:51 -08:00
2021-09-17 11:22:14 +02:00
### GitHub Actions on deployment
This will start the tests after a [GitHub Deployment ](https://developer.github.com/v3/repos/deployments/ ) went into the `success` state.
2022-04-03 19:01:02 -06:00
Services like Azure Static Web Apps, Netlify, Vercel, etc. use this pattern so you can run your end-to-end tests on their deployed environment.
2021-09-17 11:22:14 +02:00
```yml
name: Playwright Tests
on:
deployment_status:
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
if: github.event.deployment_status.state == 'success'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install dependencies
run: npm ci
- name: Install Playwright
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npm run test:e2e
env:
# This might depend on your test-runner/language binding
PLAYWRIGHT_TEST_BASE_URL: ${{ github.event.deployment_status.target_url }}
```
2020-12-30 18:04:51 -08:00
### Docker
2021-01-03 08:47:29 -08:00
We have a [pre-built Docker image ](./docker.md ) which can either be used directly, or as a reference to update your existing Docker definitions.
2020-12-30 18:04:51 -08:00
Suggested configuration
1. Using `--ipc=host` is also recommended when using Chromium—without it Chromium can run out of memory
and crash. Learn more about this option in [Docker docs ](https://docs.docker.com/engine/reference/run/#ipc-settings---ipc ).
1. Seeing other weird errors when launching Chromium? Try running your container
with `docker run --cap-add=SYS_ADMIN` when developing locally.
2022-03-24 15:08:32 -06:00
1. Using `--init` Docker flag or [dumb-init ](https://github.com/Yelp/dumb-init ) is recommended to avoid special
treatment for processes with PID=1. This is a common reason for zombie processes.
2020-12-30 18:04:51 -08:00
### Azure Pipelines
For Windows or macOS agents, no additional configuration required, just install Playwright and run your tests.
2022-03-24 15:08:32 -06:00
For Linux agents, you can use [our Docker container ](./docker.md ) with Azure
Pipelines support [running containerized
jobs](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/container-phases?view=azure-devops).
Alternatively, you can use [Command line tools ](./cli.md#install-system-dependencies ) to install all necessary dependencies.
2020-12-30 18:04:51 -08:00
```yml
pool:
2021-04-05 21:39:15 +02:00
vmImage: 'ubuntu-20.04'
2020-12-30 18:04:51 -08:00
2022-04-07 19:16:22 -06:00
container: mcr.microsoft.com/playwright:v1.22.0-focal
2020-12-30 18:04:51 -08:00
steps:
2021-01-21 16:41:42 -08:00
...
2020-12-30 18:04:51 -08:00
```
### CircleCI
2021-01-21 16:41:42 -08:00
Running Playwright on CircleCI requires the following steps:
2020-12-30 18:04:51 -08:00
2021-01-03 08:47:29 -08:00
1. Use the pre-built [Docker image ](./docker.md ) in your config like so:
2020-12-30 18:04:51 -08:00
2021-01-08 09:12:54 -08:00
```yml
2020-12-30 18:04:51 -08:00
docker:
2022-04-07 19:16:22 -06:00
- image: mcr.microsoft.com/playwright:v1.22.0-focal
2021-03-18 21:35:48 -04:00
environment:
NODE_ENV: development # Needed if playwright is in `devDependencies`
2020-12-30 18:04:51 -08:00
```
1. If you’ re using Playwright through Jest, then you may encounter an error spawning child processes:
```
[00:00.0] jest args: --e2e --spec --max-workers=36
Error: spawn ENOMEM
at ChildProcess.spawn (internal/child_process.js:394:11)
```
This is likely caused by Jest autodetecting the number of processes on the entire machine (`36` ) rather than the number allowed to your container (`2` ). To fix this, set `jest --maxWorkers=2` in your test command.
### Jenkins
2021-01-03 08:47:29 -08:00
Jenkins supports Docker agents for pipelines. Use the [Playwright Docker image ](./docker.md )
2020-12-30 18:04:51 -08:00
to run tests on Jenkins.
```groovy
pipeline {
2022-04-07 19:16:22 -06:00
agent { docker { image 'mcr.microsoft.com/playwright:v1.22.0-focal' } }
2020-12-30 18:04:51 -08:00
stages {
stage('e2e-tests') {
steps {
sh 'npm install'
sh 'npm run test'
}
}
}
}
```
### Bitbucket Pipelines
2021-01-03 08:47:29 -08:00
Bitbucket Pipelines can use public [Docker images as build environments ](https://confluence.atlassian.com/bitbucket/use-docker-images-as-build-environments-792298897.html ). To run Playwright tests on Bitbucket, use our public Docker image ([see Dockerfile ](./docker.md )).
2020-12-30 18:04:51 -08:00
```yml
2022-04-07 19:16:22 -06:00
image: mcr.microsoft.com/playwright:v1.22.0-focal
2020-12-30 18:04:51 -08:00
```
### GitLab CI
2021-01-03 08:47:29 -08:00
To run Playwright tests on GitLab, use our public Docker image ([see Dockerfile ](./docker.md )).
2020-12-30 18:04:51 -08:00
```yml
stages:
- test
tests:
stage: test
2022-04-07 19:16:22 -06:00
image: mcr.microsoft.com/playwright:v1.22.0-focal
2020-12-30 18:04:51 -08:00
script:
2021-01-21 16:41:42 -08:00
...
2020-12-30 18:04:51 -08:00
```
## Caching browsers
By default, Playwright downloads browser binaries when the Playwright NPM package
is installed. The NPM packages have a `postinstall` hook that downloads the browser
2021-08-06 14:02:41 -07:00
binaries. This behavior can be [customized with environment variables ](./browsers.md#managing-browser-binaries ).
2020-12-30 18:04:51 -08:00
Caching browsers on CI is **strictly optional** : The `postinstall` hooks should
execute and download the browser binaries on every run.
2021-01-21 16:41:42 -08:00
#### Exception: `node_modules` are cached (Node-specific)
2020-12-30 18:04:51 -08:00
Most CI providers cache the [npm-cache ](https://docs.npmjs.com/cli-commands/cache.html )
directory (located at `$HOME/.npm` ). If your CI pipelines caches the `node_modules`
directory and you run `npm install` (instead of `npm ci` ), the default configuration
**will not work**. This is because the `npm install` step will find the Playwright NPM
package on disk and not execute the `postinstall` step.
> Travis CI automatically caches `node_modules` if your repo does not have a
`package-lock.json` file.
This behavior can be fixed with one of the following approaches:
1. Move to caching `$HOME/.npm` or the npm-cache directory. (This is the default
behavior in most CI providers.)
1. Set `PLAYWRIGHT_BROWSERS_PATH=0` as the environment variable before running
`npm install` . This will download the browser binaries in the `node_modules`
2021-08-06 14:02:41 -07:00
directory and cache them with the package code. See [managing browser binaries ](./browsers.md#managing-browser-binaries ).
2020-12-30 18:04:51 -08:00
1. Use `npm ci` (instead of `npm install` ) which forces a clean install: by
removing the existing `node_modules` directory. See [npm docs ](https://docs.npmjs.com/cli/ci.html ).
1. Cache the browser binaries, with the steps below.
#### Directories to cache
With the default behavior, Playwright downloads the browser binaries in the following
directories:
- `%USERPROFILE%\AppData\Local\ms-playwright` on Windows
- `~/Library/Caches/ms-playwright` on MacOS
- `~/.cache/ms-playwright` on Linux
To cache the browser downloads between CI runs, cache this location in your CI
configuration, against a hash of the Playwright version.
## Debugging browser launches
Playwright supports the `DEBUG` environment variable to output debug logs during execution. Setting it to `pw:browser*` is helpful while debugging `Error: Failed to launch browser` errors.
2021-06-02 09:23:06 -07:00
```bash js
2020-12-30 18:04:51 -08:00
DEBUG=pw:browser* npm run test
```
2021-06-02 09:23:06 -07:00
```bash python
2021-01-21 16:41:42 -08:00
DEBUG=pw:browser* pytest
```
2020-12-30 18:04:51 -08:00
2021-04-01 20:13:50 +02:00
## Running headed
2020-12-30 18:04:51 -08:00
By default, Playwright launches browsers in headless mode. This can be changed by passing a flag when the browser is launched.
```js
// Works across chromium, firefox and webkit
const { chromium } = require('playwright');
const browser = await chromium.launch({ headless: false });
```
2021-03-01 09:18:44 -08:00
```java
// Works across chromium, firefox and webkit
import com.microsoft.playwright.*;
public class Example {
public static void main(String[] args) {
try (Playwright playwright = Playwright.create()) {
BrowserType chromium = playwright.chromium();
2021-03-05 13:50:34 -08:00
Browser browser = chromium.launch(new BrowserType.LaunchOptions().setHeadless(false));
2021-03-01 09:18:44 -08:00
}
}
}
```
2021-01-11 09:34:49 -08:00
```python async
2021-01-08 17:39:33 +01:00
import asyncio
2021-01-11 17:04:24 -08:00
from playwright.async_api import async_playwright
2021-01-08 17:39:33 +01:00
async def main():
async with async_playwright() as p:
# Works across chromium, firefox and webkit
browser = await p.chromium.launch(headless=False)
2021-01-15 09:12:47 -08:00
asyncio.run(main())
2021-01-08 17:39:33 +01:00
```
2021-01-11 09:34:49 -08:00
```python sync
2021-01-11 17:04:24 -08:00
from playwright.sync_api import sync_playwright
2021-01-08 17:39:33 +01:00
with sync_playwright() as p:
# Works across chromium, firefox and webkit
browser = p.chromium.launch(headless=False)
```
2021-05-20 04:49:48 +02:00
```csharp
using Microsoft.Playwright;
2022-04-19 21:23:26 +03:00
using var playwright = await Playwright.CreateAsync();
await playwright.Chromium.LaunchAsync(new BrowserTypeLaunchOptions
2021-05-20 04:49:48 +02:00
{
2022-04-19 21:23:26 +03:00
Headless = false
});
2021-05-20 04:49:48 +02:00
```
2021-04-01 20:13:50 +02:00
On Linux agents, headed execution requires [Xvfb ](https://en.wikipedia.org/wiki/Xvfb ) to be installed. Our [Docker image ](./docker.md ) and GitHub Action have Xvfb pre-installed. To run browsers in headed mode with Xvfb, add `xvfb-run` before the Node.js command.
2020-12-30 18:04:51 -08:00
2021-06-02 09:23:06 -07:00
```bash js
2020-12-30 18:04:51 -08:00
xvfb-run node index.js
```
2021-06-02 09:23:06 -07:00
```bash python
2021-01-21 16:41:42 -08:00
xvfb-run python test.py
```