Page.emulateMediaType() 方法
签名:
class Page {
abstract emulateMediaType(type?: string): Promise<void>;
}
参数
参数 | 类型 | 描述 |
---|---|---|
type | 字符串 | (可选)更改页面的 CSS 媒体类型。仅允许的值为 screen 、print 和 null 。传递 null 会禁用 CSS 媒体模拟。 |
返回
Promise<void>
示例
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