2021-01-02 02:17:27 +03:00
|
|
|
---
|
|
|
|
id: emulation
|
|
|
|
title: "Device and environment emulation"
|
|
|
|
---
|
2020-12-31 05:04:51 +03:00
|
|
|
|
|
|
|
Playwright allows overriding various parameters of the device where the browser is running:
|
2021-01-15 02:01:39 +03:00
|
|
|
- viewport size, device scale factor, touch support
|
|
|
|
- locale, timezone
|
|
|
|
- color scheme
|
|
|
|
- geolocation
|
2020-12-31 05:04:51 +03:00
|
|
|
|
2021-01-15 02:01:39 +03:00
|
|
|
Most of these parameters are configured during the browser context construction, but some of them such as viewport size
|
|
|
|
can be changed for individual pages.
|
2020-12-31 05:04:51 +03:00
|
|
|
|
2021-01-02 02:17:27 +03:00
|
|
|
<!-- TOC -->
|
2020-12-31 05:04:51 +03:00
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
## Devices
|
|
|
|
|
2021-01-15 02:01:39 +03:00
|
|
|
Playwright comes with a registry of device parameters for selected mobile devices. It can be used to simulate browser
|
|
|
|
behavior on a mobile device:
|
2020-12-31 05:04:51 +03:00
|
|
|
|
|
|
|
```js
|
|
|
|
const { chromium, devices } = require('playwright');
|
|
|
|
const browser = await chromium.launch();
|
|
|
|
|
|
|
|
const pixel2 = devices['Pixel 2'];
|
|
|
|
const context = await browser.newContext({
|
|
|
|
...pixel2,
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python async
|
2021-01-08 19:39:33 +03:00
|
|
|
import asyncio
|
2021-01-12 04:04:24 +03:00
|
|
|
from playwright.async_api import async_playwright
|
2021-01-08 19:39:33 +03:00
|
|
|
|
2021-01-15 02:01:39 +03:00
|
|
|
async def run(playwright):
|
|
|
|
pixel_2 = playwright.devices['Pixel 2']
|
|
|
|
browser = await playwright.webkit.launch(headless=False)
|
|
|
|
context = await browser.new_context(
|
|
|
|
**pixel_2,
|
|
|
|
)
|
2021-01-08 19:39:33 +03:00
|
|
|
|
2021-01-15 02:01:39 +03:00
|
|
|
async def main():
|
|
|
|
async with async_playwright() as playwright:
|
|
|
|
await run(playwright)
|
|
|
|
asyncio.run(main())
|
2021-01-08 19:39:33 +03:00
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python sync
|
2021-01-12 04:04:24 +03:00
|
|
|
from playwright.sync_api import sync_playwright
|
2021-01-08 19:39:33 +03:00
|
|
|
|
2021-01-15 02:01:39 +03:00
|
|
|
def run(playwright):
|
|
|
|
pixel_2 = playwright.devices['Pixel 2']
|
|
|
|
browser = playwright.webkit.launch(headless=False)
|
2021-01-08 19:39:33 +03:00
|
|
|
context = browser.new_context(
|
|
|
|
**pixel_2,
|
|
|
|
)
|
2021-01-15 02:01:39 +03:00
|
|
|
|
|
|
|
with sync_playwright() as playwright:
|
|
|
|
run(playwright)
|
2021-01-08 19:39:33 +03:00
|
|
|
```
|
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
All pages created in the context above will share the same device parameters.
|
|
|
|
|
|
|
|
#### API reference
|
|
|
|
- [`property: Playwright.devices`]
|
|
|
|
- [`method: Browser.newContext`]
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
## User agent
|
|
|
|
|
|
|
|
All pages created in the context above will share the user agent specified:
|
|
|
|
|
|
|
|
```js
|
|
|
|
const context = await browser.newContext({
|
|
|
|
userAgent: 'My user agent'
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python async
|
2021-01-08 19:39:33 +03:00
|
|
|
context = await browser.new_context(
|
|
|
|
user_agent='My user agent'
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python sync
|
2021-01-08 19:39:33 +03:00
|
|
|
context = browser.new_context(
|
|
|
|
user_agent='My user agent'
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
#### API reference
|
|
|
|
- [`method: Browser.newContext`]
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
## Viewport
|
|
|
|
|
|
|
|
Create a context with custom viewport size:
|
|
|
|
|
|
|
|
```js
|
|
|
|
// Create context with given viewport
|
|
|
|
const context = await browser.newContext({
|
|
|
|
viewport: { width: 1280, height: 1024 }
|
|
|
|
});
|
|
|
|
|
|
|
|
// Resize viewport for individual page
|
|
|
|
await page.setViewportSize({ width: 1600, height: 1200 });
|
|
|
|
|
|
|
|
// Emulate high-DPI
|
|
|
|
const context = await browser.newContext({
|
|
|
|
viewport: { width: 2560, height: 1440 },
|
|
|
|
deviceScaleFactor: 2,
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python async
|
2021-01-08 19:39:33 +03:00
|
|
|
# Create context with given viewport
|
|
|
|
context = await browser.new_context(
|
|
|
|
viewport={ 'width': 1280, 'height': 1024 }
|
|
|
|
)
|
|
|
|
|
|
|
|
# Resize viewport for individual page
|
|
|
|
await page.set_viewport_size(width=1600, height=1200)
|
|
|
|
|
|
|
|
# Emulate high-DPI
|
|
|
|
context = await browser.new_context(
|
|
|
|
viewport={ 'width': 2560, 'height': 1440 },
|
|
|
|
device_scale_factor=2,
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python sync
|
2021-01-08 19:39:33 +03:00
|
|
|
# Create context with given viewport
|
|
|
|
context = browser.new_context(
|
|
|
|
viewport={ 'width': 1280, 'height': 1024 }
|
|
|
|
)
|
|
|
|
|
|
|
|
# Resize viewport for individual page
|
|
|
|
page.set_viewport_size(width=1600, height=1200)
|
|
|
|
|
|
|
|
# Emulate high-DPI
|
|
|
|
context = browser.new_context(
|
|
|
|
viewport={ 'width': 2560, 'height': 1440 },
|
|
|
|
device_scale_factor=2,
|
|
|
|
```
|
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
#### API reference
|
|
|
|
- [`method: Browser.newContext`]
|
|
|
|
- [`method: Page.setViewportSize`]
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
## Locale & timezone
|
|
|
|
|
|
|
|
```js
|
|
|
|
// Emulate locale and time
|
|
|
|
const context = await browser.newContext({
|
|
|
|
locale: 'de-DE',
|
|
|
|
timezoneId: 'Europe/Berlin',
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python async
|
2021-01-08 19:39:33 +03:00
|
|
|
# Emulate locale and time
|
|
|
|
context = await browser.new_context(
|
|
|
|
locale='de-DE',
|
|
|
|
timezone_id='Europe/Berlin',
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python sync
|
2021-01-08 19:39:33 +03:00
|
|
|
# Emulate locale and time
|
|
|
|
context = browser.new_context(
|
|
|
|
locale='de-DE',
|
|
|
|
timezone_id='Europe/Berlin',
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
#### API reference
|
|
|
|
- [`method: Browser.newContext`]
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
## Permissions
|
|
|
|
|
|
|
|
Allow all pages in the context to show system notifications:
|
2021-01-08 19:39:33 +03:00
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
```js
|
|
|
|
const context = await browser.newContext({
|
|
|
|
permissions: ['notifications'],
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python async
|
2021-01-08 19:39:33 +03:00
|
|
|
context = await browser.new_context(
|
|
|
|
permissions=['notifications'],
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python sync
|
2021-01-08 19:39:33 +03:00
|
|
|
context = browser.new_context(
|
|
|
|
permissions=['notifications'],
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
Grant all pages in the existing context access to current location:
|
2021-01-08 19:39:33 +03:00
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
```js
|
|
|
|
await context.grantPermissions(['geolocation']);
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python async
|
2021-01-08 19:39:33 +03:00
|
|
|
await context.grant_permissions(['geolocation'])
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python sync
|
2021-01-08 19:39:33 +03:00
|
|
|
context.grant_permissions(['geolocation'])
|
|
|
|
```
|
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
Grant notifications access from a specific domain:
|
2021-01-08 19:39:33 +03:00
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
```js
|
|
|
|
await context.grantPermissions(['notifications'], {origin: 'https://skype.com'} );
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python async
|
2021-01-08 19:39:33 +03:00
|
|
|
await context.grant_permissions(['notifications'], origin='https://skype.com')
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python sync
|
2021-01-08 19:39:33 +03:00
|
|
|
context.grant_permissions(['notifications'], origin='https://skype.com')
|
|
|
|
```
|
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
Revoke all permissions:
|
2021-01-08 19:39:33 +03:00
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
```js
|
|
|
|
await context.clearPermissions();
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python async
|
2021-01-08 19:39:33 +03:00
|
|
|
await context.clear_permissions()
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python sync
|
2021-01-08 19:39:33 +03:00
|
|
|
context.clear_permissions()
|
|
|
|
```
|
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
#### API reference
|
|
|
|
- [`method: Browser.newContext`]
|
|
|
|
- [`method: BrowserContext.grantPermissions`]
|
|
|
|
- [`method: BrowserContext.clearPermissions`]
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
## Geolocation
|
2021-01-15 02:01:39 +03:00
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
Create a context with `"geolocation"` permissions granted:
|
2021-01-08 19:39:33 +03:00
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
```js
|
|
|
|
const context = await browser.newContext({
|
|
|
|
geolocation: { longitude: 48.858455, latitude: 2.294474 },
|
|
|
|
permissions: ['geolocation']
|
|
|
|
});
|
|
|
|
```
|
2021-01-08 19:39:33 +03:00
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python async
|
2021-01-08 19:39:33 +03:00
|
|
|
context = await browser.new_context(
|
2021-01-11 05:18:35 +03:00
|
|
|
geolocation={"longitude": 48.858455, "latitude": 2.294474},
|
|
|
|
permissions=["geolocation"]
|
2021-01-08 19:39:33 +03:00
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python sync
|
2021-01-08 19:39:33 +03:00
|
|
|
context = browser.new_context(
|
2021-01-11 05:18:35 +03:00
|
|
|
geolocation={"longitude": 48.858455, "latitude": 2.294474},
|
|
|
|
permissions=["geolocation"]
|
2021-01-08 19:39:33 +03:00
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
Change the location later:
|
|
|
|
|
|
|
|
```js
|
|
|
|
await context.setGeolocation({ longitude: 29.979097, latitude: 31.134256 });
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python async
|
2021-01-11 05:18:35 +03:00
|
|
|
await context.set_geolocation({"longitude": 29.979097, "latitude": 31.134256})
|
2021-01-08 19:39:33 +03:00
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python sync
|
2021-01-11 05:18:35 +03:00
|
|
|
context.set_geolocation({"longitude": 29.979097, "latitude": 31.134256})
|
2021-01-08 19:39:33 +03:00
|
|
|
```
|
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
**Note** you can only change geolocation for all pages in the context.
|
|
|
|
|
|
|
|
#### API reference
|
|
|
|
- [`method: Browser.newContext`]
|
|
|
|
- [`method: BrowserContext.setGeolocation`]
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
## Color scheme and media
|
|
|
|
|
2021-01-15 02:01:39 +03:00
|
|
|
Create a context with dark or light mode. Pages created in this context will follow this color scheme preference.
|
2020-12-31 05:04:51 +03:00
|
|
|
|
|
|
|
```js
|
|
|
|
// Create context with dark mode
|
|
|
|
const context = await browser.newContext({
|
|
|
|
colorScheme: 'dark' // or 'light'
|
|
|
|
});
|
|
|
|
|
|
|
|
// Create page with dark mode
|
|
|
|
const page = await browser.newPage({
|
|
|
|
colorScheme: 'dark' // or 'light'
|
|
|
|
});
|
|
|
|
|
|
|
|
// Change color scheme for the page
|
|
|
|
await page.emulateMedia({ colorScheme: 'dark' });
|
|
|
|
|
|
|
|
// Change media for page
|
|
|
|
await page.emulateMedia({ media: 'print' });
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python async
|
2021-01-08 19:39:33 +03:00
|
|
|
# Create context with dark mode
|
|
|
|
context = await browser.new_context(
|
|
|
|
color_scheme='dark' # or 'light'
|
|
|
|
)
|
|
|
|
|
|
|
|
# Create page with dark mode
|
|
|
|
page = await browser.new_page(
|
|
|
|
color_scheme='dark' # or 'light'
|
|
|
|
)
|
|
|
|
|
|
|
|
# Change color scheme for the page
|
|
|
|
await page.emulate_media(color_scheme='dark')
|
|
|
|
|
|
|
|
# Change media for page
|
|
|
|
await page.emulate_media(media='print')
|
|
|
|
```
|
|
|
|
|
2021-01-11 20:34:49 +03:00
|
|
|
```python sync
|
2021-01-08 19:39:33 +03:00
|
|
|
# Create context with dark mode
|
|
|
|
context = browser.new_context(
|
|
|
|
color_scheme='dark' # or 'light'
|
|
|
|
)
|
|
|
|
|
|
|
|
# Create page with dark mode
|
|
|
|
page = browser.new_page(
|
|
|
|
color_scheme='dark' # or 'light'
|
|
|
|
)
|
|
|
|
|
|
|
|
# Change color scheme for the page
|
|
|
|
page.emulate_media(color_scheme='dark')
|
|
|
|
|
|
|
|
# Change media for page
|
|
|
|
page.emulate_media(media='print')
|
|
|
|
```
|
|
|
|
|
2020-12-31 05:04:51 +03:00
|
|
|
#### API reference
|
|
|
|
- [`method: Browser.newContext`]
|
2021-01-15 02:01:39 +03:00
|
|
|
- [`method: Page.emulateMedia`]
|