Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.4 KB

puppeteer.page.emulatemediatype.md

File metadata and controls

44 lines (33 loc) · 1.4 KB
sidebar_label
Page.emulateMediaType

Page.emulateMediaType() method

Signature:

class Page {
  emulateMediaType(type?: string): Promise<void>;
}

Parameters

Parameter Type Description
type string (Optional) Changes the CSS media type of the page. The only allowed values are screen, print and null. Passing null disables CSS media emulation.

Returns:

Promise<void>

Example

await page.evaluate(() => matchMedia('screen').matches);
// → true
await page.evaluate(() => matchMedia('print').matches);
// → false

await page.emulateMediaType('print');
await page.evaluate(() => matchMedia('screen').matches);
// → false
await page.evaluate(() => matchMedia('print').matches);
// → true

await page.emulateMediaType(null);
await page.evaluate(() => matchMedia('screen').matches);
// → true
await page.evaluate(() => matchMedia('print').matches);
// → false