1、浏览器启动失败
原因:executablePath指向的是executablePath:'C:/Program Files/Google/Chrome/Application',而不是chrome.exe。
修改:若使用本地chrome,注意一定要指向chrome.exe才能正常使用。
2、启动的浏览器自适应系统分辨率
设置defaultViewport参数为null即可,例如:
const browser = await puppeteer.launch({
executablePath:'C:/Program Files/Google/Chrome/Application/chrome.exe',
headless: false,
defaultViewport:null
})
网友评论