介绍
以下是命令行中最常用的选项。
运行所有测试
npx playwright test
运行单个测试文件
npx playwright test tests/todo-page.spec.ts
运行一组测试文件
npx playwright test tests/todo-page/ tests/landing-page/
运行文件名中包含 my-spec 或 my-spec-2 的文件
npx playwright test my-spec my-spec-2
运行 my-spec.ts 第 42 行中的测试
npx playwright test my-spec.ts:42
使用标题运行测试
npx playwright test -g "add a todo item"
在有头浏览器中运行测试
npx playwright test --headed
针对特定项目运行所有测试
npx playwright test --project=chromium
禁用 parallelization
npx playwright test --workers=1
选择 reporter
npx playwright test --reporter=dot
使用 Playwright 检查器 在调试模式下运行
npx playwright test --debug
在交互式 UI 模式下运行测试,并具有内置监视模式(预览)
npx playwright test --ui
请求帮忙
npx playwright test --help