diff --git a/docs/src/api/class-android.md b/docs/src/api/class-android.md index 6f6d4c7ed1..c889ee5d0b 100644 --- a/docs/src/api/class-android.md +++ b/docs/src/api/class-android.md @@ -74,12 +74,6 @@ const { _android: android } = require('playwright'); })(); ``` -Note that since you don't need Playwright to install web browsers when testing Android, you can omit browser download via setting the following environment variable when installing Playwright: - -```bash js -PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 npm i -D playwright -``` - ## async method: Android.connect * since: v1.28 - returns: <[AndroidDevice]> diff --git a/docs/src/api/class-electron.md b/docs/src/api/class-electron.md index b21d8573b0..d9d32f2c08 100644 --- a/docs/src/api/class-electron.md +++ b/docs/src/api/class-electron.md @@ -40,12 +40,6 @@ const { _electron: electron } = require('playwright'); })(); ``` -Note that since you don't need Playwright to install web browsers when testing Electron, you can omit browser download via setting the following environment variable when installing Playwright: - -```bash js -PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 npm i -D playwright -``` - **Supported Electron versions are:** * v12.2.0+ * v13.4.0+ diff --git a/docs/src/intro-js.md b/docs/src/intro-js.md index 635ba181d9..64f043150f 100644 --- a/docs/src/intro-js.md +++ b/docs/src/intro-js.md @@ -124,7 +124,7 @@ npx playwright --version ## System requirements -- Node.js 16+ +- Node.js 18+ - Windows 10+, Windows Server 2016+ or Windows Subsystem for Linux (WSL). - MacOS 12 Monterey, MacOS 13 Ventura, or MacOS 14 Sonoma. - Debian 11, Debian 12, Ubuntu 20.04 or Ubuntu 22.04, with x86-64 or arm64 architecture. diff --git a/packages/playwright-core/types/types.d.ts b/packages/playwright-core/types/types.d.ts index 7a4e941acd..e4a5f8d230 100644 --- a/packages/playwright-core/types/types.d.ts +++ b/packages/playwright-core/types/types.d.ts @@ -14225,13 +14225,6 @@ export {}; * })(); * ``` * - * Note that since you don't need Playwright to install web browsers when testing Android, you can omit browser - * download via setting the following environment variable when installing Playwright: - * - * ```bash - * PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 npm i -D playwright - * ``` - * */ export interface Android { /** @@ -17308,13 +17301,6 @@ export interface Download { * })(); * ``` * - * Note that since you don't need Playwright to install web browsers when testing Electron, you can omit browser - * download via setting the following environment variable when installing Playwright: - * - * ```bash - * PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 npm i -D playwright - * ``` - * * **Supported Electron versions are:** * - v12.2.0+ * - v13.4.0+