mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
93e9acc410
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
1.1 KiB
1.1 KiB
sidebar_label |
---|
Page.emulateMediaType |
Page.emulateMediaType() method
Signature:
class Page {
abstract 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 |
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