TestInfo
TestInfo
包含有关当前正在运行的测试的信息。 它可用于测试函数、test.beforeEach()、test.afterEach()、test.beforeAll() 和 test.afterAll() 钩子,以及测试范围的夹具。TestInfo
提供实用程序来控制测试执行:附加文件、更新测试超时、确定当前正在运行的测试以及它是否被重试等。
import { test, expect } from '@playwright/test';
test('basic test', async ({ page }, testInfo) => {
expect(testInfo.title).toBe('basic test');
await page.screenshot(testInfo.outputPath('screenshot.png'));
});
方法
attach
添加于:v1.10将磁盘上的值或文件附加到当前测试。 一些报告器会显示测试附件。 必须指定 path 或 body,但不能同时指定。
例如,您可以将屏幕截图附加到测试
import { test, expect } from '@playwright/test';
test('basic test', async ({ page }, testInfo) => {
await page.goto('https://playwright.net.cn');
const screenshot = await page.screenshot();
await testInfo.attach('screenshot', { body: screenshot, contentType: 'image/png' });
});
或者,您可以附加 API 返回的文件
import { test, expect } from '@playwright/test';
import { download } from './my-custom-helpers';
test('basic test', async ({}, testInfo) => {
const tmpPath = await download('a');
await testInfo.attach('downloaded', { path: tmpPath });
});
testInfo.attach() 会自动处理将附加文件复制到报告器可以访问的位置。 您可以在等待 attach 调用后安全地删除附件。
用法
await testInfo.attach(name);
await testInfo.attach(name, options);
参数
-
附件名称。 该名称还将被清理并用作保存到磁盘时的文件名前缀。
-
options
Object (可选)
返回值
fail()
添加于:v1.10将当前正在运行的测试标记为“应该失败”。 Playwright 测试运行此测试并确保它确实失败。 这对于文档目的很有用,可以承认某些功能已损坏,直到它被修复。 这类似于 test.fail()。
用法
testInfo.fail();
fail(condition)
添加于:v1.10有条件地将当前正在运行的测试标记为“应该失败”,并带有一个可选的描述。 这类似于 test.fail()。
用法
testInfo.fail(condition);
testInfo.fail(condition, description);
参数
fixme()
添加于:v1.10将测试标记为“fixme”,目的是修复它。 测试立即中止。 这类似于 test.fixme()。
用法
testInfo.fixme();
fixme(condition)
添加于:v1.10有条件地将当前正在运行的测试标记为“fixme”,并带有一个可选的描述。 这类似于 test.fixme()。
用法
testInfo.fixme(condition);
testInfo.fixme(condition, description);
参数
outputPath
添加于:v1.10返回 testInfo.outputDir 内的路径,测试可以在该路径中安全地放置临时文件。 保证并行运行的测试不会相互干扰。
import { test, expect } from '@playwright/test';
import fs from 'fs';
test('example test', async ({}, testInfo) => {
const file = testInfo.outputPath('dir', 'temporary-file.txt');
await fs.promises.writeFile(file, 'Put some data to the dir/temporary-file.txt', 'utf8');
});
请注意,
pathSegments
接受测试输出目录的路径段,例如testInfo.outputPath('relative', 'path', 'to', 'output')
。 但是,此路径必须保留在每个测试的 testInfo.outputDir 目录内(即test-results/a-test-title
),否则会抛出错误。
用法
testInfo.outputPath(...pathSegments);
参数
返回值
setTimeout
添加于:v1.10更改当前正在运行的测试的超时。 零表示没有超时。 了解有关 各种超时 的更多信息。
超时通常在 配置文件 中指定,但在某些情况下更改超时可能很有用
import { test, expect } from '@playwright/test';
test.beforeEach(async ({ page }, testInfo) => {
// Extend timeout for all tests running this hook by 30 seconds.
testInfo.setTimeout(testInfo.timeout + 30000);
});
用法
testInfo.setTimeout(timeout);
参数
skip()
添加于:v1.10无条件跳过当前正在运行的测试。 测试立即中止。 这类似于 test.skip()。
用法
testInfo.skip();
skip(condition)
添加于:v1.10有条件地跳过当前正在运行的测试,并带有一个可选的描述。 这类似于 test.skip()。
用法
testInfo.skip(condition);
testInfo.skip(condition, description);
参数
slow()
添加于:v1.10将当前正在运行的测试标记为“slow”,使其超时时间是默认超时的三倍。 这类似于 test.slow()。
用法
testInfo.slow();
slow(condition)
添加于:v1.10有条件地将当前正在运行的测试标记为“慢”,并提供可选的描述,使其超时时间为默认超时的三倍。这类似于 test.slow()。
用法
testInfo.slow(condition);
testInfo.slow(condition, description);
参数
snapshotPath
添加于:v1.10返回具有给定 pathSegments
的快照文件的路径。了解有关 快照 的更多信息。
请注意,
pathSegments
接受快照文件的路径段,例如testInfo.snapshotPath('relative', 'path', 'to', 'snapshot.png')
。但是,此路径必须保留在每个测试文件的快照目录内(即a.spec.js-snapshots
),否则将抛出错误。
用法
testInfo.snapshotPath(...pathSegments);
参数
返回值
属性
annotations
添加于:v1.10适用于当前测试的注释列表。包括来自测试的注释、来自当前测试所属的所有 test.describe() 组的注释以及测试文件的文件级注释。
了解有关 测试注释 的更多信息。
用法
testInfo.annotations
类型
attachments
添加于:v1.10附加到当前测试的文件或缓冲区列表。一些报告程序会显示测试附件。
若要添加附件,请使用 testInfo.attach(),而不是直接推送到此数组。
用法
testInfo.attachments
类型
column
添加于:v1.10声明当前正在运行的测试的列号。
用法
testInfo.column
类型
config
添加于:v1.10来自 配置文件 的已处理配置。
用法
testInfo.config
类型
duration
添加于:v1.10测试完成所花费的毫秒数。在测试成功或失败完成之前始终为零。可以在 test.afterEach() 挂钩中使用。
用法
testInfo.duration
类型
error
添加于:v1.10在测试执行期间抛出的第一个错误(如果有)。这等于 testInfo.errors 中的第一个元素。
用法
testInfo.error
类型
errors
添加于:v1.10在测试执行期间抛出的错误(如果有)。
用法
testInfo.errors
类型
expectedStatus
添加于:v1.10当前正在运行的测试的预期状态。这通常为 'passed'
,但有几种情况除外:
'skipped'
用于跳过的测试,例如使用 test.skip() 跳过的测试;'failed'
用于使用 test.fail() 标记为失败的测试。
预期状态通常与实际的 testInfo.status 进行比较。
import { test, expect } from '@playwright/test';
test.afterEach(async ({}, testInfo) => {
if (testInfo.status !== testInfo.expectedStatus)
console.log(`${testInfo.title} did not run as expected!`);
});
用法
testInfo.expectedStatus
类型
- "passed" | "failed" | "timedOut" | "skipped" | "interrupted"
file
添加于:v1.10声明当前正在运行的测试的文件的绝对路径。
用法
testInfo.file
类型
fn
添加于:v1.10传递给 test(title, testFunction)
的测试函数。
用法
testInfo.fn
类型
line
添加于:v1.10声明当前正在运行的测试的行号。
用法
testInfo.line
类型
outputDir
添加于:v1.10此特定测试运行的输出目录的绝对路径。每次测试运行都会获得自己的目录,因此不会发生冲突。
用法
testInfo.outputDir
类型
parallelIndex
添加于:v1.100
到 workers - 1
之间的 worker 索引。保证同时运行的 worker 具有不同的 parallelIndex
。当 worker 重新启动时(例如在失败后),新的 worker 进程将具有相同的 parallelIndex
。
也可以作为 process.env.TEST_PARALLEL_INDEX
获得。了解有关使用 Playwright Test 进行 并行化和分片 的更多信息。
用法
testInfo.parallelIndex
类型
project
添加于:v1.10来自 配置文件 的已处理项目配置。
用法
testInfo.project
类型
repeatEachIndex
添加于:v1.10在“重复每个”模式下运行时指定唯一的重复索引。此模式通过将 --repeat-each
传递到 命令行 来启用。
用法
testInfo.repeatEachIndex
类型
retry
添加于:v1.10指定测试在失败后重试时的重试次数。第一次测试运行的 testInfo.retry 等于零,第一次重试的 testInfo.retry 等于一,依此类推。了解有关 重试 的更多信息。
import { test, expect } from '@playwright/test';
test.beforeEach(async ({}, testInfo) => {
// You can access testInfo.retry in any hook or fixture.
if (testInfo.retry > 0)
console.log(`Retrying!`);
});
test('my test', async ({ page }, testInfo) => {
// Here we clear some server-side state when retrying.
if (testInfo.retry)
await cleanSomeCachesOnTheServer();
// ...
});
用法
testInfo.retry
类型
snapshotDir
添加于:v1.10此特定测试的快照输出目录的绝对路径。每个测试套件都会获得自己的目录,因此不会发生冲突。
此属性不考虑 testProject.snapshotPathTemplate 配置。
用法
testInfo.snapshotDir
类型
snapshotSuffix
添加于:v1.10不建议使用 testInfo.snapshotSuffix。请使用 testConfig.snapshotPathTemplate 来配置快照路径。
用于区分多个测试配置之间的快照的后缀。例如,如果快照依赖于平台,则可以将 testInfo.snapshotSuffix
设置为 process.platform
。在这种情况下,expect(value).toMatchSnapshot(snapshotName)
将根据平台使用不同的快照。了解有关 快照 的更多信息。
用法
testInfo.snapshotSuffix
类型
status
添加于:v1.10当前正在运行的测试的实际状态。在 test.afterEach() 挂钩和夹具中测试完成之后可用。
状态通常与 testInfo.expectedStatus 进行比较。
import { test, expect } from '@playwright/test';
test.afterEach(async ({}, testInfo) => {
if (testInfo.status !== testInfo.expectedStatus)
console.log(`${testInfo.title} did not run as expected!`);
});
用法
testInfo.status
类型
- "passed" | "failed" | "timedOut" | "skipped" | "interrupted"
tags
添加于:v1.43适用于测试的标签。了解有关 标签 的更多信息。
在测试运行期间对该列表进行的任何更改都将对测试报告程序不可见。
用法
testInfo.tags
类型
testId
添加于:v1.32与报告程序 API 中的测试用例 ID 相匹配的测试 ID。
用法
testInfo.testId
类型
timeout
添加于:v1.10当前正在运行的测试的毫秒数超时。零表示没有超时。了解有关 各种超时 的更多信息。
超时通常在 配置文件 中指定。
import { test, expect } from '@playwright/test';
test.beforeEach(async ({ page }, testInfo) => {
// Extend timeout for all tests running this hook by 30 seconds.
testInfo.setTimeout(testInfo.timeout + 30000);
});
用法
testInfo.timeout
类型
title
添加于:v1.10当前正在运行的测试的标题,如传递给 test(title, testFunction)
的标题。
用法
testInfo.title
类型
titlePath
添加于:v1.10以测试文件名开头的完整标题路径。
用法
testInfo.titlePath
类型
workerIndex
添加于:v1.10正在运行测试的 worker 进程的唯一索引。当 worker 重新启动时(例如在失败后),新的 worker 进程将获得新的唯一 workerIndex
。
也可以作为 process.env.TEST_WORKER_INDEX
使用。了解更多关于 Playwright Test 的并行处理和分片。
用法
testInfo.workerIndex
类型