gpt4 book ai didi

puppeteer - headless Chrome 节点 API 和 Puppeteer 安装

转载 作者:行者123 更新时间:2023-12-04 09:29:59 25 4
gpt4 key购买 nike

在干净的 ubuntu 18.04 上安装 chrome headless 的整个过程中,我遇到了很多问题。 github 上的设置指南对于干净的 ubuntu 18.04 来说是不够的

以下是设置 headless chrome 替代 phantomjs 的一些错误和答案/解决方案。

错误 1

(node:23835) UnhandledPromiseRejectionWarning: Error: Chromium revision is not downloaded. Run "npm install" or "yarn install"
at Launcher.launch owlcommand.com /puppeteer/node_modules/puppeteer/lib/Launcher.js:112:15)
at <anonymous>
(node:23835) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:23835) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

错误 2
(node:25272) UnhandledPromiseRejectionWarning: Error: Failed to launch chrome!
owlcommand.com /puppeteer/node_modules/puppeteer/.local-chromium/linux-594312/chrome-linux/chrome: error while loading shared libraries: libX11-xcb.so.1: cannot open shared object file: No such file or directory

最佳答案

基于 https://github.com/GoogleChrome/puppeteer
您只需在 Ubuntu 18.04 中运行以下命令

npm i puppeteer
不幸的是,这还不够。
您将需要以下依赖项
sudo apt-get install gconf-service libasound2 libatk1.0-0 libatk-bridge2.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget
之后,如果您按照他们的示例运行它,您将收到一个错误
    (node:28469) UnhandledPromiseRejectionWarning: Error: Failed to launch chrome!
[1025/150325.817887:ERROR:zygote_host_impl_linux.cc(89)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
解决方案是
const browser = await puppeteer.launch({args: ['--no-sandbox']});
添加 --no-sandbox
它将相应地工作。完整的工作源代码如下
    const puppeteer = require('puppeteer');

(async () => {
const browser = await puppeteer.launch({args: ['--no-sandbox']});
const page = await browser.newPage();
await page.goto('http://owlcommand.com');
await page.screenshot({path: 'example.png'});

await browser.close();
})();
puppeteer@1.9.0~install: cannot run in wd %s %s (wd=%s) 的解决方法
npm install --unsafe-perm
截图大小
默认真的很小,如果你正在测试的页面是响应式的,你可以用不同的视口(viewport)设置来测试它。您可以通过 setViewport 方法更改其尺寸。
await page.setViewport({
width: 1600,
height: 1000
});
最新 Puppeteer 更新(2020 年 8 月)
sudo apt-get install libgbm1(必需)

关于puppeteer - headless Chrome 节点 API 和 Puppeteer 安装,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52993002/

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