gpt4 book ai didi

node.js - 如何使用 puppeteer 最大化浏览器窗口?

转载 作者:太空宇宙 更新时间:2023-11-04 01:29:26 29 4
gpt4 key购买 nike

我正在尝试使用puppeteer最大化浏览器窗口。我尝试了下面的代码,但浏览器未最大化为完整模式。我也没有在 puppeteer 库中找到任何可用的函数来最大化窗口。

(async () => {
const browser = await puppeteer.launch({headless: false , slowMo: 100, rgs: ['--start-fullscreen', '--window-size=1920,1080'], executablePath: 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe' });
const page = await browser.newPage();

await page.setViewport({ width: 1920, height: 1080 });

Example image

最佳答案

这对我来说效果很好。

await puppeteer.launch({ 
headless: false,
defaultViewport: null,
args: ['--start-maximized']
});

关于node.js - 如何使用 puppeteer 最大化浏览器窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56543232/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com