2021-01-01 15:17:27 -08:00
---
id: installation
2021-01-11 09:34:49 -08:00
title: "Installation"
2021-01-01 15:17:27 -08:00
---
2020-12-30 18:04:51 -08:00
2021-07-09 16:13:33 -07:00
This is a browser installation guide for Playwright Library. If you are using Playwright Test, please refer to [installing browsers ](./test-install.md ) test guide.
2021-01-01 15:17:27 -08:00
<!-- TOC -->
2020-12-30 18:04:51 -08:00
## Managing browser binaries
2021-06-16 19:39:15 -06:00
Each version of Playwright needs specific versions of browser binaries to operate. By default, Playwright downloads Chromium, WebKit and Firefox browsers into the OS-specific cache folders:
2020-12-30 18:04:51 -08:00
- `%USERPROFILE%\AppData\Local\ms-playwright` on Windows
- `~/Library/Caches/ms-playwright` on MacOS
- `~/.cache/ms-playwright` on Linux
2021-06-02 09:23:06 -07:00
```bash js
2021-05-11 20:47:48 +02:00
npm i -D playwright
2020-12-30 18:04:51 -08:00
```
2021-06-02 09:23:06 -07:00
```bash python
2021-05-11 20:47:48 +02:00
pip install playwright
playwright install
2021-03-01 15:10:47 -08:00
```
2021-06-16 19:39:15 -06:00
These browsers will take a few hundred megabytes of disk space when installed:
2020-12-30 18:04:51 -08:00
2021-06-02 09:23:06 -07:00
```bash
2021-06-29 13:00:20 -07:00
du -hs ~/Library/Caches/ms-playwright/*
2020-12-30 18:04:51 -08:00
281M chromium-XXXXXX
187M firefox-XXXX
180M webkit-XXXX
```
You can override default behavior using environment variables. When installing Playwright, ask it to download browsers into a specific location:
2021-06-02 09:23:06 -07:00
```bash js
2020-12-30 18:04:51 -08:00
# Linux/macOS
2021-05-11 20:47:48 +02:00
PLAYWRIGHT_BROWSERS_PATH=$HOME/pw-browsers npm i -D playwright
2020-12-30 18:04:51 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-05-11 20:47:48 +02:00
set PLAYWRIGHT_BROWSERS_PATH=%USERPROFILE%\pw-browsers
npm i -D playwright
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
$env:PLAYWRIGHT_BROWSERS_PATH="$env:USERPROFILE\pw-browsers"
npm i -D playwright
2020-12-30 18:04:51 -08:00
```
2021-06-02 09:23:06 -07:00
```bash python
2021-03-01 15:10:47 -08:00
# Linux/macOS
2021-05-11 20:47:48 +02:00
pip install playwright
PLAYWRIGHT_BROWSERS_PATH=$HOME/pw-browsers python -m playwright install
2020-12-30 18:04:51 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-05-11 20:47:48 +02:00
set PLAYWRIGHT_BROWSERS_PATH=%USERPROFILE%\pw-browsers
pip install playwright
playwright install
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
$env:PLAYWRIGHT_BROWSERS_PATH="$env:USERPROFILE\pw-browsers"
pip install playwright
playwright install
2021-03-01 15:10:47 -08:00
```
2021-06-02 09:23:06 -07:00
```bash java
2021-03-01 15:10:47 -08:00
# Linux/macOS
2021-05-11 20:47:48 +02:00
PLAYWRIGHT_BROWSERS_PATH=$HOME/pw-browsers mvn test
2021-03-01 15:10:47 -08:00
```
When running Playwright scripts, ask it to search for browsers in a shared location.
2021-06-02 09:23:06 -07:00
```bash js
2020-12-30 18:04:51 -08:00
# Linux/macOS
2021-05-11 20:47:48 +02:00
PLAYWRIGHT_BROWSERS_PATH=$HOME/pw-browsers node playwright-script.js
2020-12-30 18:04:51 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-05-11 20:47:48 +02:00
set PLAYWRIGHT_BROWSERS_PATH=%USERPROFILE%\pw-browsers
node playwright-script.js
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
$env:PLAYWRIGHT_BROWSERS_PATH="$env:USERPROFILE\pw-browsers"
node playwright-script.js
2020-12-30 18:04:51 -08:00
```
2021-06-02 09:23:06 -07:00
```bash python
2021-03-01 15:10:47 -08:00
# Linux/macOS
2021-05-11 20:47:48 +02:00
PLAYWRIGHT_BROWSERS_PATH=$HOME/pw-browsers python playwright_script.js
2020-12-30 18:04:51 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-05-11 20:47:48 +02:00
set PLAYWRIGHT_BROWSERS_PATH=%USERPROFILE%\pw-browsers
python playwright_script.py
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
$env:PLAYWRIGHT_BROWSERS_PATH="$env:USERPROFILE\pw-browsers"
python playwright_script.py
2021-03-01 15:10:47 -08:00
```
2021-06-02 09:23:06 -07:00
```bash java
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-05-11 20:47:48 +02:00
set PLAYWRIGHT_BROWSERS_PATH=%USERPROFILE%\pw-browsers
mvn test
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
$env:PLAYWRIGHT_BROWSERS_PATH="$env:USERPROFILE\pw-browsers"
mvn test
2021-03-01 15:10:47 -08:00
```
Or you can opt into the hermetic install and place binaries in the local folder:
2021-06-02 09:23:06 -07:00
```bash js
2020-12-30 18:04:51 -08:00
# Linux/macOS
2021-01-16 06:42:40 -08:00
# Places binaries to node_modules/playwright
2021-05-11 20:47:48 +02:00
PLAYWRIGHT_BROWSERS_PATH=0 npm i -D playwright
2020-12-30 18:04:51 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-01-16 06:42:40 -08:00
# Places binaries to node_modules\playwright
2021-05-11 20:47:48 +02:00
set PLAYWRIGHT_BROWSERS_PATH=0
npm i -D playwright
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
# Places binaries to node_modules\playwright
$env:PLAYWRIGHT_BROWSERS_PATH=0
npm i -D playwright
2020-12-30 18:04:51 -08:00
```
2021-06-02 09:23:06 -07:00
```bash python
2021-03-01 15:10:47 -08:00
# Linux/macOS
2021-05-11 20:47:48 +02:00
pip install playwright
PLAYWRIGHT_BROWSERS_PATH=0 playwright install
2021-03-01 15:10:47 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-05-11 20:47:48 +02:00
set PLAYWRIGHT_BROWSERS_PATH=0
pip install playwright
playwright install
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
$env:PLAYWRIGHT_BROWSERS_PATH=0
pip install playwright
playwright install
2021-03-01 15:10:47 -08:00
```
2020-12-30 18:04:51 -08:00
Playwright keeps track of packages that need those browsers and will garbage collect them as you update Playwright to the newer versions.
2021-01-12 12:14:27 -08:00
:::note
Developers can opt-in in this mode via exporting `PLAYWRIGHT_BROWSERS_PATH=$HOME/pw-browsers` in their `.bashrc` .
:::
2020-12-30 18:04:51 -08:00
2021-06-29 13:00:20 -07:00
## Install behind a firewall or a proxy
2021-03-01 15:10:47 -08:00
By default, Playwright downloads browsers from Microsoft CDN.
Sometimes companies maintain an internal proxy that blocks direct access to the public
resources. In this case, Playwright can be configured to download browsers via a proxy server.
2021-06-02 09:23:06 -07:00
```bash js
2021-03-01 15:10:47 -08:00
# Linux/macOS
2021-06-02 00:15:21 -07:00
HTTPS_PROXY=https://192.0.2.1 npm i -D playwright
2021-03-01 15:10:47 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-06-02 00:15:21 -07:00
set HTTPS_PROXY=https://192.0.2.1
2021-05-11 20:47:48 +02:00
npm i -D playwright
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
2021-06-02 00:15:21 -07:00
$env:HTTPS_PROXY="https://192.0.2.1"
2021-05-25 07:10:22 +02:00
npm i -D playwright
2021-03-01 15:10:47 -08:00
```
2021-06-02 09:23:06 -07:00
```bash python
2021-03-01 15:10:47 -08:00
# Linux/macOS
2021-05-11 20:47:48 +02:00
pip install playwright
2021-06-02 00:15:21 -07:00
HTTPS_PROXY=https://192.0.2.1 playwright install
2021-03-01 15:10:47 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-06-02 00:15:21 -07:00
set HTTPS_PROXY=https://192.0.2.1
2021-05-11 20:47:48 +02:00
pip install playwright
playwright install
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
2021-06-02 00:15:21 -07:00
$env:HTTPS_PROXY="https://192.0.2.1"
2021-05-25 07:10:22 +02:00
pip install playwright
playwright install
2021-03-01 15:10:47 -08:00
```
2021-06-02 09:23:06 -07:00
```bash java
2021-03-01 15:10:47 -08:00
# Linux/macOS
2021-06-02 00:15:21 -07:00
HTTPS_PROXY=https://192.0.2.1 mvn test
2021-03-01 15:10:47 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-06-02 00:15:21 -07:00
set HTTPS_PROXY=https://192.0.2.1
2021-05-11 20:47:48 +02:00
mvn test
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
2021-06-02 00:15:21 -07:00
$env:HTTPS_PROXY="https://192.0.2.1"
2021-05-25 07:10:22 +02:00
mvn test
2021-03-01 15:10:47 -08:00
```
2020-12-30 18:04:51 -08:00
## Download from artifact repository
2021-03-01 15:10:47 -08:00
By default, Playwright downloads browsers from Microsoft CDN.
2020-12-30 18:04:51 -08:00
Sometimes companies maintain an internal artifact repository to host browser
binaries. In this case, Playwright can be configured to download from a custom
location using the `PLAYWRIGHT_DOWNLOAD_HOST` env variable.
2021-06-02 09:23:06 -07:00
```bash js
2020-12-30 18:04:51 -08:00
# Linux/macOS
2021-06-02 00:15:21 -07:00
PLAYWRIGHT_DOWNLOAD_HOST=192.0.2.1 npm i -D playwright
2020-12-30 18:04:51 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-06-02 00:15:21 -07:00
set PLAYWRIGHT_DOWNLOAD_HOST=192.0.2.1
2021-05-11 20:47:48 +02:00
npm i -D playwright
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
2021-06-02 00:15:21 -07:00
$env:PLAYWRIGHT_DOWNLOAD_HOST="192.0.2.1"
2021-05-25 07:10:22 +02:00
npm i -D playwright
2020-12-30 18:04:51 -08:00
```
2021-06-02 09:23:06 -07:00
```bash python
2021-03-01 15:10:47 -08:00
# Linux/macOS
2021-05-11 20:47:48 +02:00
pip install playwright
2021-06-02 00:15:21 -07:00
PLAYWRIGHT_DOWNLOAD_HOST=192.0.2.1 playwright install
2021-03-01 15:10:47 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-06-02 00:15:21 -07:00
set PLAYWRIGHT_DOWNLOAD_HOST=192.0.2.1
2021-05-11 20:47:48 +02:00
pip install playwright
playwright install
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
2021-06-02 00:15:21 -07:00
$env:PLAYWRIGHT_DOWNLOAD_HOST="192.0.2.1"
2021-05-25 07:10:22 +02:00
pip install playwright
playwright install
2021-03-01 15:10:47 -08:00
```
2021-06-02 09:23:06 -07:00
```bash java
2021-03-01 15:10:47 -08:00
# Linux/macOS
2021-06-02 00:15:21 -07:00
PLAYWRIGHT_DOWNLOAD_HOST=192.0.2.1 mvn test
2021-03-01 15:10:47 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-06-02 00:15:21 -07:00
set PLAYWRIGHT_DOWNLOAD_HOST=192.0.2.1
2021-05-11 20:47:48 +02:00
mvn test
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
2021-06-02 00:15:21 -07:00
$env:PLAYWRIGHT_DOWNLOAD_HOST="192.0.2.1"
2021-05-25 07:10:22 +02:00
mvn test
2021-03-01 15:10:47 -08:00
```
2020-12-30 18:04:51 -08:00
It is also possible to use a per-browser download hosts using `PLAYWRIGHT_CHROMIUM_DOWNLOAD_HOST` , `PLAYWRIGHT_FIREFOX_DOWNLOAD_HOST` and `PLAYWRIGHT_WEBKIT_DOWNLOAD_HOST` env variables that
take precedence over `PLAYWRIGHT_DOWNLOAD_HOST` .
2021-06-02 09:23:06 -07:00
```bash js
2020-12-30 18:04:51 -08:00
# Linux/macOS
2021-06-02 00:15:21 -07:00
PLAYWRIGHT_FIREFOX_DOWNLOAD_HOST=203.0.113.3 PLAYWRIGHT_DOWNLOAD_HOST=192.0.2.1 npm i -D playwright
2020-12-30 18:04:51 -08:00
```
2021-06-02 09:23:06 -07:00
```bash python
2021-03-01 15:10:47 -08:00
# Linux/macOS
2021-05-11 20:47:48 +02:00
pip install playwright
2021-06-02 00:15:21 -07:00
PLAYWRIGHT_FIREFOX_DOWNLOAD_HOST=203.0.113.3 PLAYWRIGHT_DOWNLOAD_HOST=192.0.2.1 python -m playwright install
2021-03-01 15:10:47 -08:00
```
2021-06-02 09:23:06 -07:00
```bash java
2021-03-01 15:10:47 -08:00
# Linux/macOS
2021-06-02 00:15:21 -07:00
PLAYWRIGHT_FIREFOX_DOWNLOAD_HOST=203.0.113.3 PLAYWRIGHT_DOWNLOAD_HOST=192.0.2.1 mvn test
2021-03-01 15:10:47 -08:00
```
2020-12-30 18:04:51 -08:00
## Skip browser downloads
In certain cases, it is desired to avoid browser downloads altogether because
browser binaries are managed separately.
This can be done by setting `PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD` variable before installation.
2021-06-02 09:23:06 -07:00
```bash js
2020-12-30 18:04:51 -08:00
# Linux/macOS
2021-05-11 20:47:48 +02:00
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 npm i -D playwright
2020-12-30 18:04:51 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-05-11 20:47:48 +02:00
set PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
npm i -D playwright
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
$env:PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
npm i -D playwright
2020-12-30 18:04:51 -08:00
```
2021-06-02 09:23:06 -07:00
```bash python
2021-03-01 15:10:47 -08:00
# Linux/macOS
2021-05-11 20:47:48 +02:00
pip install playwright
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 python -m playwright install
2021-03-01 15:10:47 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-05-11 20:47:48 +02:00
set PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
pip install playwright
playwright install
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
$env:PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
pip install playwright
playwright install
2021-03-01 15:10:47 -08:00
```
2021-06-02 09:23:06 -07:00
```bash java
2021-03-01 15:10:47 -08:00
# Linux/macOS
2021-05-11 20:47:48 +02:00
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 mvn test
2021-03-01 15:10:47 -08:00
2021-05-25 07:10:22 +02:00
# Windows with cmd.exe
2021-05-11 20:47:48 +02:00
set PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
mvn test
2021-05-25 07:10:22 +02:00
# Windows with PowerShell
$env:PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
mvn test
2021-03-01 15:10:47 -08:00
```
2020-12-30 18:04:51 -08:00
## Download single browser binary
2021-03-01 15:10:47 -08:00
* langs: js
2020-12-30 18:04:51 -08:00
Playwright ships three packages that bundle only a single browser:
- [`playwright-chromium` ](https://www.npmjs.com/package/playwright-chromium )
- [`playwright-webkit` ](https://www.npmjs.com/package/playwright-webkit )
- [`playwright-firefox` ](https://www.npmjs.com/package/playwright-firefox )
2021-01-12 12:14:27 -08:00
:::note
All configuration environment variables also apply to these packages.
:::
2020-12-30 18:04:51 -08:00
Using these packages is as easy as using a regular Playwright:
Install a specific package
2021-06-02 09:23:06 -07:00
```bash
2021-05-11 20:47:48 +02:00
npm i -D playwright-webkit
2020-12-30 18:04:51 -08:00
```
Require package
```js
// Notice a proper package name in require
const { webkit } = require('playwright-webkit');
(async () => {
const browser = await webkit.launch();
// ...
})();
```
2021-03-01 15:10:47 -08:00
## Download single browser binary
* langs: python
Playwright downloads Chromium, Firefox and WebKit browsers by default. To install a specific browser, pass it as an argument during installation.
2021-06-02 09:23:06 -07:00
```bash
2021-05-11 20:47:48 +02:00
pip install playwright
playwright install firefox
2021-03-01 15:10:47 -08:00
```
2021-03-16 07:00:18 +08:00
## Stale browser removal
Playwright keeps track of the clients that use its browsers. When there are no more clients that require particular
version of the browser, that version is deleted from the system. That way you can safely use Playwright instances of
different versions and at the same time, you don't waste disk space for the browsers that are no longer in use.
To opt-out from the unused browser removal, you can set the `PLAYWRIGHT_SKIP_BROWSER_GC=1` environment variable.