Puppeteer 中文文档v25.8.0

CreatePageOptions 类型

签名

export type CreatePageOptions = (
  | {
      type?: 'tab';
    }
  | {
      type: 'window';
      windowBounds?: WindowBounds;
    }
) & {
  background?: boolean;
};

引用: WindowBounds