gpt4 book ai didi

javascript - Cypress 测试在本地是绿色的,但在 Gitlab CI 中失败

转载 作者:行者123 更新时间:2023-12-03 17:23:18 24 4
gpt4 key购买 nike

我用 Cypress 实现了 e2e 测试。它们工作正常,我可以根据应用程序的打包版本使用命令行运行它们:npm run ci:cy-run .
以下是来自 package.json 的命令:

"ci:start-server": "angular-http-server --path ./dist/treo -p 4200",
"cy:run": "cypress run --project e2e --browser chrome --headless",
"ci:cy-run": "start-server-and-test ci:start-server http://localhost:4200 cy:run"
当我尝试使用此 .gitlab-ci.yml 文件在 Gitlab CI 中执行此命令时:
image: teracy/angular-cli:latest
image: cypress/browsers:node12.16.2-chrome81-ff75
build:
stage: build
cache:
paths:
- node_modules/
script:
- npm install --quiet
- npm run build:prod
artifacts:
paths:
- dist/myapp
test:
stage: test
cache:
policy: pull
paths:
- node_modules/
script:
- npm run lint
- npx cypress install
- npm run ci:cy-run
我遇到了一些错误,例如:
 CypressError: Timed out retrying: `cy.type()` failed because this element is not visible:
`<input formcontrolname="verificationCode" name="verificationCode" matinput="" placeholder="Code à 6 chiffres" required="" type="string" minlength="6" maxlength="6" class="mat-input-element mat-form-field-autofill-control ng-tns-c27-2 ng-untouched ng-pristine ng-invalid cdk-text-field-autofill-monitored" id="mat-input-0" aria-invalid="false" aria-required="true">`
This element `<input#mat-input-0.mat-input-element.mat-form-field-autofill-control.ng-tns-c27-2.ng-untouched.ng-pristine.ng-invalid.cdk-text-field-autofill-monitored>` is not visible because its parent `<div.mat-form-field-infix.ng-tns-c27-2>` has CSS property: `visibility: hidden`
Fix this problem, or use `{force: true}` to disable error checking.
https://on.cypress.io/element-cannot-be-interacted-with
Gitlab 是否有一些特定的配置要做? 如何调试此问题 因为我无法从 CI 获取生成的文件(图像、视频)?
非常感谢您的帮助!
蒂埃里

最佳答案

您可以使用工件在 gitlab CI 中从 Cypress 获取视频/屏幕截图,只需确保将它们放在应用程序的文件夹结构中。
我现在正在处理的示例会产生一个可下载的屏幕截图文件夹:

e2e tests all:
image: cypress/base:14.15.4
stage: manual-tests
when: manual
allow_failure: true
before_script:
- npm install
- npx cypress verify
script:
- npm run-script test:e2e
cache:
<<: *global_cache
policy: pull
artifacts:
paths:
- tests/e2e/screenshots/**/*.png
expire_in: 2 hrs
when: on_failure
这将在我们的 VueJS 应用程序中获取屏幕截图文件夹。
Cypress CI 工件示例 here和一般 Gitlab 工件信息 here .

关于javascript - Cypress 测试在本地是绿色的,但在 Gitlab CI 中失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64472060/

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