gpt4 book ai didi

node.js - 无法在 Gitlab.com 上的共享运行器上以 headless 模式运行 Puppeteer

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

我在 Gitlab.com 上设置了一个私有(private)存储库。我为我的代码编写了一些测试用例,包括在浏览器上运行的 E2E 测试。为此,我使用 Puppeteer。我的测试用例是用 node.js 编写的,我使用 MochaNyc 进行测试和覆盖部分。

这是我的示例 .gitlab-ci.yml 文件。

image: node:10.14.2

cache:
paths:
- node_modules/

stages:
- test

test_async:
stage: test
before_script:
- apt-get update
- apt-get install -yyq ca-certificates
- apt-get install -yyq libappindicator1 libasound2 libatk1.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 libnss3 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
- apt-get install -yyq gconf-service lsb-release wget xdg-utils
- apt-get install -yyq fonts-liberation

script:
- npm install
- npm i mocha
- npm i puppeteer
- npm i nyc
- npm test

更新:现在运行测试时,我的管道构建出现以下错误:

Failed to launch chrome! spawn chromium ENOENT

浏览器初始化脚本:

browser = await puppeteer.launch({
headless: true,
executablePath: 'chromium',
args: ['--no-sandbox', '--disable-setuid-sandbox'],
slowMo: 100,
timeout: 10000
});

任何帮助将不胜感激。问候

最佳答案

谢谢@nurettin。那位医生确实帮了我很多。最后将我的初始化设置为:

browser = await puppeteer.launch({
headless: true,
slowMo: 100,
timeout: 10000,
args: ['--no-sandbox'],

});

为我解决了这个问题以及 .gitlab-ci.yml 中定义的依赖项。

关于node.js - 无法在 Gitlab.com 上的共享运行器上以 headless 模式运行 Puppeteer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54212466/

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