playwright/docs/emulation.md
2020-04-16 13:54:21 -07:00

3.4 KiB

Device and environment emulation

Playwright allows overriding various parameters that depend on the device where the browser is running (such as viewport size, touch support, dpr etc.) as well as custom system settings such as locale and timezone. Most of these parameters are configured during context construction but some of them (e.g. viewport size) can be changed for individual pages.

Playwright comes with a registry of device parameters for some popular mobile devices. It can be used to simulate browser behavior on a mobile device like this:

  const { chromium, devices } = require('playwright');
  const browser = await chromium.launch();

  const pixel2 = devices['Pixel 2'];
  const context = await browser.newContext({
    ...pixel2,
  });

All pages created in the context above will share the same device parameters.

API reference



Configuring screen size(viewport), touch support, isMobile ...

Create a context with custom viewport size:

  const context = await browser.newContext({
    viewport: {
      width: 1280,
      height: 1024
    }
  });

Resize viewport for individual pages:

  await page.setViewportSize({ 'width': 1600, 'height': 1200 });

Emulate custom mobile device without touch support:

  const context = await browser.newContext({
    viewport: {
      width: 400,
      height: 900,
    },
    deviceScaleFactor: 2,
    isMobile: true,
    hasTouch: false
  });

API reference



Geolocation

Create a context with 'geolocation' permissions granted:

  const context = await browser.newContext({
    geolocation: { longitude: 48.858455, latitude: 2.294474 },
    permissions: ['geolocation']
  });

Change the location later:

  await context.setGeolocation({ longitude: 29.979097, latitude: 31.134256 };

Note you can only change geolocation for all pages in the context.

API reference



Permissions

Allow all pages in the context to show system notifications:

  const context = await browser.newContext({
    permissions: ['notifications'],
  });

Grant all pages in the existing context access to current location:

  await context.grantPermissions(['geolocation']);

Grant camera and mic access from a specific domain:

  await context.grantPermissions(['camera', 'microphone'], {origin: 'https://skype.com'} );

Revoke all permissions:

  await context.clearPermissions();

API reference



Locale and timzeone

  const context = await browser.newContext({
    locale: 'ru-RU',
    timezoneId: 'Europe/Moscow',
  });

API reference