我想使用命令 npx cypress run --headed 在 head 模式下运行脚本,而无需测试运行器 GUI。我与 Cypress 合作已经一年了,我记得它以前是这样运行的,但现在它的行为有所不同。
尝试过“npx cypress run --headed”
在 Cypress 13.0.0 中添加了一个命令行选项来禁用运行器 UI:
--no-runner-ui
。
要阻止 Cypress 渲染 Runner UI,请使用
--no-runner-ui.
npx cypress run --headed --no-runner-ui
应该给你预期的行为。