现在位置: 首页 > Playwright 教程 > 正文

Playwright 运行测试

本章全面介绍 Playwright 测试的运行方式、命令行参数以及各种筛选技巧。


基本运行命令

实例

# 运行所有测试
npx playwright test

# 默认使用 package.json 中配置的项目
npm test

筛选特定测试

按文件路径

# 运行单个测试文件
npx playwright test tests/login.spec.ts

# 运行目录中的所有测试
npx playwright test tests/user/

# 运行多个文件(空格分隔)
npx playwright test tests/login.spec.ts tests/register.spec.ts

按文件名关键词

# 运行文件名中包含 "login" 或 "user" 的所有测试
npx playwright test login user

按测试名称筛选(-g / --grep)

# 运行测试名称中包含 "登录" 的测试
npx playwright test -g "登录"

# 通过正则表达式筛选
npx playwright test -g "登录|注册"

按 Tag 筛选

实例

// 在测试中定义 tag
test('快速冒烟测试 @smoke', async ({ page }) => {
  // ...
});

test('慢速测试 @slow', async ({ page }) => {
  // ...
});
# 只运行带 @smoke 标签的测试
npx playwright test --grep "@smoke"

# 跳过带 @slow 标签的测试
npx playwright test --grep-invert "@slow"

浏览器控制

指定浏览器(--project)

# 只在 Chromium 上运行
npx playwright test --project=chromium

# 在多个浏览器上运行
npx playwright test --project=chromium --project=firefox

有头模式(--headed)

# 显示浏览器窗口(默认无头)
npx playwright test --headed

指定浏览器可执行路径

# 使用本地安装的 Chrome 而非 Playwright 的 Chromium
npx playwright test --project=chromium \
  --channel=chrome

执行模式

UI 模式(--ui)

# 在 UI 模式下运行(推荐开发和调试时使用)
npx playwright test --ui

调试模式(--debug)

# 单步调试测试
npx playwright test --debug

并行与重复

控制并行数(--workers)

# 使用 4 个 worker 并行运行
npx playwright test --workers=4

# 单线程运行(方便调试)
npx playwright test --workers=1

重复运行(--repeat-each)

# 每个测试重复运行 3 次(检查稳定性)
npx playwright test --repeat-each=3

分片运行(--shard)

# 在 CI 上分片运行(分 4 片,当前为第 1 片)
npx playwright test --shard=1/4

# 第 2 片
npx playwright test --shard=2/4

分片常用于 CI 中多台机器并行运行测试,每台机器只跑一部分,最终合并结果。


截图与 Trace 控制

# 更新视觉回归的基准截图
npx playwright test --update-snapshots

# 强制生成 Trace 文件(即使配置中没有开启)
npx playwright test --trace on

# 查看最后一次运行的 Trace
npx playwright show-trace test-results/.../trace.zip

常用命令速查

命令作用
npx playwright test运行所有测试
npx playwright test file.spec.ts运行指定文件
npx playwright test -g "关键词"按测试名称筛选
npx playwright test --project=chromium指定浏览器
npx playwright test --headed有头模式(显示浏览器窗口)
npx playwright test --uiUI 模式
npx playwright test --debug调试模式
npx playwright test --workers=4指定 worker 数量
npx playwright test --shard=1/4分片运行
npx playwright test --repeat-each=3重复运行
npx playwright test --update-snapshots更新视觉基准截图
npx playwright show-report查看 HTML 报告
npx playwright show-trace trace.zip查看 Trace
npx playwright codegen url启动代码生成器