跳至主要内容

Playwright 测试

Playwright 测试提供了一个test函数来声明测试,以及一个expect函数来编写断言。

import { test, expect } from '@playwright/test';

test('basic test', async ({ page }) => {
await page.goto('https://playwright.net.cn/');
const name = await page.innerText('.navbar__title');
expect(name).toBe('Playwright');
});

方法

test

添加时间:v1.10 test.test

声明一个测试。

  • test(title, body)
  • test(title, details, body)

用法

import { test, expect } from '@playwright/test';

test('basic test', async ({ page }) => {
await page.goto('https://playwright.net.cn/');
// ...
});

标签

您可以通过提供其他测试细节来标记测试。或者,您可以在测试标题中包含标签。注意,每个标签必须以@符号开头。

import { test, expect } from '@playwright/test';

test('basic test', {
tag: '@smoke',
}, async ({ page }) => {
await page.goto('https://playwright.net.cn/');
// ...
});

test('another test @smoke', async ({ page }) => {
await page.goto('https://playwright.net.cn/');
// ...
});

测试标签会显示在测试报告中,并且可以通过TestCase.tags属性提供给自定义报告器。

您也可以根据标签在测试执行期间筛选测试

了解更多关于 标签 的信息。

注释

您可以通过提供其他测试细节来注释测试。

import { test, expect } from '@playwright/test';

test('basic test', {
annotation: {
type: 'issue',
description: 'https://github.com/microsoft/playwright/issues/23180',
},
}, async ({ page }) => {
await page.goto('https://playwright.net.cn/');
// ...
});

测试注释会显示在测试报告中,并且可以通过TestCase.annotations属性提供给自定义报告器。

您也可以通过操作 testInfo.annotations 在运行时添加注释。

了解更多关于 测试注释 的信息。

参数


test.afterAll

添加时间:v1.10 test.test.afterAll

声明一个afterAll钩子,它在每个工作者中所有测试之后执行一次。

当在测试文件的范围内调用时,它在文件中的所有测试之后运行。当在 test.describe() 组的内部调用时,它在组中的所有测试之后运行。

用法

test.afterAll(async () => {
console.log('Done with tests');
// ...
});

或者,您可以带标题声明一个钩子。

test.afterAll('Teardown', async () => {
console.log('Done with tests');
// ...
});

参数

  • title string (可选)添加时间:v1.38#

    钩子标题。

  • hookFunction function(Fixtures, TestInfo)#

    钩子函数,它接受一个或两个参数:一个包含工作者夹具的对象,以及可选的 TestInfo

细节

当添加多个afterAll钩子时,它们将按注册顺序运行。

请注意,工作者进程在测试失败时会重新启动,并且afterAll钩子会在新的工作者中再次运行。了解更多关于 工作者和失败 的信息。

即使某些钩子失败了,Playwright 也会继续运行所有适用的钩子。

  • test.afterAll(hookFunction)
  • test.afterAll(title, hookFunction)

test.afterEach

添加时间:v1.10 test.test.afterEach

声明一个afterEach钩子,它在每个测试之后执行。

当在测试文件的范围内调用时,它在文件中的每个测试之后运行。当在 test.describe() 组的内部调用时,它在组中的每个测试之后运行。

您可以访问与测试主体本身相同的 Fixtures,还可以访问 TestInfo 对象,它提供了许多有用的信息。例如,您可以检查测试是否成功或失败。

  • test.afterEach(hookFunction)
  • test.afterEach(title, hookFunction)

用法

example.spec.ts
import { test, expect } from '@playwright/test';

test.afterEach(async ({ page }) => {
console.log(`Finished ${test.info().title} with status ${test.info().status}`);

if (test.info().status !== test.info().expectedStatus)
console.log(`Did not run as expected, ended up at ${page.url()}`);
});

test('my test', async ({ page }) => {
// ...
});

或者,您可以带标题声明一个钩子。

example.spec.ts
test.afterEach('Status check', async ({ page }) => {
if (test.info().status !== test.info().expectedStatus)
console.log(`Did not run as expected, ended up at ${page.url()}`);
});

参数

  • title string (可选)添加时间:v1.38#

    钩子标题。

  • hookFunction function(Fixtures, TestInfo)#

    钩子函数,它接受一个或两个参数:一个包含夹具的对象,以及可选的 TestInfo

细节

当添加多个afterEach钩子时,它们将按注册顺序运行。

即使某些钩子失败了,Playwright 也会继续运行所有适用的钩子。


test.beforeAll

添加时间:v1.10 test.test.beforeAll

声明一个beforeAll钩子,它在每个工作者进程中所有测试之前执行一次。

当在测试文件的范围内调用时,它在文件中的所有测试之前运行。当在 test.describe() 组的内部调用时,它在组中的所有测试之前运行。

您可以使用 test.afterAll() 来拆除在beforeAll中设置的任何资源。

  • test.beforeAll(hookFunction)
  • test.beforeAll(title, hookFunction)

用法

example.spec.ts
import { test, expect } from '@playwright/test';

test.beforeAll(async () => {
console.log('Before tests');
});

test.afterAll(async () => {
console.log('After tests');
});

test('my test', async ({ page }) => {
// ...
});

或者,您可以带标题声明一个钩子。

example.spec.ts
test.beforeAll('Setup', async () => {
console.log('Before tests');
});

参数

  • title string (可选)添加时间:v1.38#

    钩子标题。

  • hookFunction function(Fixtures, TestInfo)#

    钩子函数,它接受一个或两个参数:一个包含工作者夹具的对象,以及可选的 TestInfo

细节

当添加多个beforeAll钩子时,它们将按注册顺序运行。

请注意,工作者进程在测试失败时会重新启动,并且beforeAll钩子会在新的工作者中再次运行。了解更多关于 工作者和失败 的信息。

即使某些钩子失败了,Playwright 也会继续运行所有适用的钩子。


test.beforeEach

添加时间:v1.10 test.test.beforeEach

声明一个beforeEach钩子,它在每个测试之前执行。

当在测试文件的范围内调用时,它在文件中的每个测试之前运行。当在 test.describe() 组的内部调用时,它在组中的每个测试之前运行。

您可以访问与测试主体本身相同的 Fixtures,还可以访问 TestInfo 对象,它提供了许多有用的信息。例如,您可以在开始测试之前导航页面。

您可以使用 test.afterEach() 来拆除在beforeEach中设置的任何资源。

  • test.beforeEach(hookFunction)
  • test.beforeEach(title, hookFunction)

用法

example.spec.ts
import { test, expect } from '@playwright/test';

test.beforeEach(async ({ page }) => {
console.log(`Running ${test.info().title}`);
await page.goto('https://my.start.url/');
});

test('my test', async ({ page }) => {
expect(page.url()).toBe('https://my.start.url/');
});

或者,您可以带标题声明一个钩子。

example.spec.ts
test.beforeEach('Open start URL', async ({ page }) => {
console.log(`Running ${test.info().title}`);
await page.goto('https://my.start.url/');
});

参数

  • title string (可选)添加时间:v1.38#

    钩子标题。

  • hookFunction function(Fixtures, TestInfo)#

    钩子函数,它接受一个或两个参数:一个包含夹具的对象,以及可选的 TestInfo

细节

当添加多个beforeEach钩子时,它们将按注册顺序运行。

即使某些钩子失败了,Playwright 也会继续运行所有适用的钩子。


test.describe

添加时间:v1.10 test.test.describe

声明一组测试。

  • test.describe(title, callback)
  • test.describe(callback)
  • test.describe(title, details, callback)

用法

您可以使用标题声明一组测试。该标题将在测试报告中作为每个测试标题的一部分显示。

test.describe('two tests', () => {
test('one', async ({ page }) => {
// ...
});

test('two', async ({ page }) => {
// ...
});
});

匿名组

您也可以使用没有标题的声明测试组。这对于使用 test.use() 为一组测试提供通用选项非常方便。

test.describe(() => {
test.use({ colorScheme: 'dark' });

test('one', async ({ page }) => {
// ...
});

test('two', async ({ page }) => {
// ...
});
});

标签

您可以通过提供其他细节来标记组中的所有测试。注意,每个标签必须以@符号开头。

import { test, expect } from '@playwright/test';

test.describe('two tagged tests', {
tag: '@smoke',
}, () => {
test('one', async ({ page }) => {
// ...
});

test('two', async ({ page }) => {
// ...
});
});

了解更多关于 标签 的信息。

注释

您可以通过提供其他详细信息来注释组中的所有测试。

import { test, expect } from '@playwright/test';

test.describe('two annotated tests', {
annotation: {
type: 'issue',
description: 'https://github.com/microsoft/playwright/issues/23180',
},
}, () => {
test('one', async ({ page }) => {
// ...
});

test('two', async ({ page }) => {
// ...
});
});

了解更多关于 测试注释 的信息。

参数


test.describe.configure

添加时间:v1.10 test.test.describe.configure

配置封闭作用域。可以在顶级或描述内部执行。配置适用于整个作用域,无论它是在测试声明之前还是之后运行。

了解更多关于执行模式的信息 这里.

用法

  • 并行运行测试。

    // Run all the tests in the file concurrently using parallel workers.
    test.describe.configure({ mode: 'parallel' });
    test('runs in parallel 1', async ({ page }) => {});
    test('runs in parallel 2', async ({ page }) => {});
  • 串行运行测试,从头开始重试。

    注意

    不建议串行运行。通常最好使测试隔离,以便它们可以独立运行。

    // Annotate tests as inter-dependent.
    test.describe.configure({ mode: 'serial' });
    test('runs first', async ({ page }) => {});
    test('runs second', async ({ page }) => {});
  • 配置每个测试的重试次数和超时。

    // Each test in the file will be retried twice and have a timeout of 20 seconds.
    test.describe.configure({ retries: 2, timeout: 20_000 });
    test('runs first', async ({ page }) => {});
    test('runs second', async ({ page }) => {});
  • 并行运行多个描述,但按顺序运行每个描述内部的测试。

    test.describe.configure({ mode: 'parallel' });

    test.describe('A, runs in parallel with B', () => {
    test.describe.configure({ mode: 'default' });
    test('in order A1', async ({ page }) => {});
    test('in order A2', async ({ page }) => {});
    });

    test.describe('B, runs in parallel with A', () => {
    test.describe.configure({ mode: 'default' });
    test('in order B1', async ({ page }) => {});
    test('in order B2', async ({ page }) => {});
    });

参数

  • options 对象 (可选)
    • mode "default" | "parallel" | "serial" (可选)#

      执行模式。了解更多关于执行模式的信息 这里.

    • retries 数字 (可选)新增于:v1.28#

      每个测试的重试次数。

    • timeout 数字 (可选)新增于:v1.28#

      每个测试的超时时间(毫秒)。覆盖 testProject.timeouttestConfig.timeout.


test.describe.fixme

新增于:v1.25 test.test.describe.fixme

声明一个测试组,类似于 test.describe()。此组中的测试被标记为“fixme”并且不会执行。

  • test.describe.fixme(title, callback)
  • test.describe.fixme(callback)
  • test.describe.fixme(title, details, callback)

用法

test.describe.fixme('broken tests that should be fixed', () => {
test('example', async ({ page }) => {
// This test will not run
});
});

您也可以省略标题。

test.describe.fixme(() => {
// ...
});

参数


test.describe.only

添加时间:v1.10 test.test.describe.only

声明一组聚焦测试。如果有聚焦测试或套件,则所有测试或套件都会运行,但其他测试或套件不会运行。

  • test.describe.only(title, callback)
  • test.describe.only(callback)
  • test.describe.only(title, details, callback)

用法

test.describe.only('focused group', () => {
test('in the focused group', async ({ page }) => {
// This test will run
});
});
test('not in the focused group', async ({ page }) => {
// This test will not run
});

您也可以省略标题。

test.describe.only(() => {
// ...
});

参数


test.describe.skip

添加时间:v1.10 test.test.describe.skip

声明一个跳过的测试组,类似于 test.describe()。跳过的组中的测试永远不会运行。

  • test.describe.skip(title, callback)
  • test.describe.skip(title)
  • test.describe.skip(title, details, callback)

用法

test.describe.skip('skipped group', () => {
test('example', async ({ page }) => {
// This test will not run
});
});

您也可以省略标题。

test.describe.skip(() => {
// ...
});

参数


test.extend

添加时间:v1.10 test.test.extend

通过定义可以在测试中使用的夹具和/或选项来扩展 test 对象。

用法

首先定义一个夹具和/或一个选项。

import { test as base } from '@playwright/test';
import { TodoPage } from './todo-page';

export type Options = { defaultItem: string };

// Extend basic test by providing a "defaultItem" option and a "todoPage" fixture.
export const test = base.extend<Options & { todoPage: TodoPage }>({
// Define an option and provide a default value.
// We can later override it in the config.
defaultItem: ['Do stuff', { option: true }],

// Define a fixture. Note that it can use built-in fixture "page"
// and a new option "defaultItem".
todoPage: async ({ page, defaultItem }, use) => {
const todoPage = new TodoPage(page);
await todoPage.goto();
await todoPage.addToDo(defaultItem);
await use(todoPage);
await todoPage.removeAll();
},
});

然后在测试中使用夹具。

example.spec.ts
import { test } from './my-test';

test('test 1', async ({ todoPage }) => {
await todoPage.addToDo('my todo');
// ...
});

在配置文件中配置选项。

playwright.config.ts
import { defineConfig } from '@playwright/test';
import type { Options } from './my-test';

export default defineConfig<Options>({
projects: [
{
name: 'shopping',
use: { defaultItem: 'Buy milk' },
},
{
name: 'wellbeing',
use: { defaultItem: 'Exercise!' },
},
]
});

了解更多关于 夹具参数化测试 的信息。

参数

  • fixtures 对象#

    包含夹具和/或选项的对象。了解更多关于 夹具格式 的信息。

返回值


test.fail

添加时间:v1.10 test.test.fail

将测试标记为“应该失败”。Playwright 运行此测试并确保它确实失败了。这对于文档目的来说非常有用,可以承认某些功能是坏的,直到它被修复。

声明一个“失败”测试

  • test.fail(title, body)
  • test.fail(title, details, body)

在运行时将测试注释为“失败”

  • test.fail(condition, description)
  • test.fail(callback, description)
  • test.fail()

用法

您可以声明一个测试应该失败,以便 Playwright 确保它确实失败。

import { test, expect } from '@playwright/test';

test.fail('not yet ready', async ({ page }) => {
// ...
});

如果您的测试在某些配置中失败,但在所有配置中都不失败,则可以根据某些条件在测试主体内部将测试标记为失败。我们建议在这种情况下传递一个 description 参数。

import { test, expect } from '@playwright/test';

test('fail in WebKit', async ({ page, browserName }) => {
test.fail(browserName === 'webkit', 'This feature is not implemented for Mac yet');
// ...
});

您可以使用单个 test.fail(callback, description) 调用将文件或 test.describe() 组中的所有测试标记为“应该失败”。

import { test, expect } from '@playwright/test';

test.fail(({ browserName }) => browserName === 'webkit', 'not implemented yet');

test('fail in WebKit 1', async ({ page }) => {
// ...
});
test('fail in WebKit 2', async ({ page }) => {
// ...
});

您还可以在测试主体内部无参数调用 test.fail() 以始终将测试标记为失败。我们建议使用 test.fail(title, body) 声明失败的测试。

import { test, expect } from '@playwright/test';

test('less readable', async ({ page }) => {
test.fail();
// ...
});

参数

  • title string (可选)添加时间:v1.42#

    测试标题。

  • details Object (可选)添加时间:v1.42#

    有关测试详细信息,请参阅 test()

  • body 函数(夹具, 测试信息) (可选)添加时间:v1.42#

    测试主体,它接受一个或两个参数:一个包含夹具的对象,以及可选的 TestInfo

  • condition 布尔值 (可选)#

    当条件为 true 时,测试被标记为“应该失败”。

  • callback 函数(夹具):布尔值 (可选)#

    一个基于测试夹具返回是否标记为“应该失败”的函数。当返回值为 true 时,测试或测试被标记为“应该失败”。

  • description 字符串 (可选)#

    将在测试报告中反映的可选描述。


test.fixme

添加时间:v1.10 test.test.fixme

将测试标记为“fixme”,意图是修复它。Playwright 不会在 test.fixme() 调用之后运行测试。

声明一个“fixme”测试

  • test.fixme(title, body)
  • test.fixme(title, details, body)

在运行时将测试注释为“fixme”

  • test.fixme(condition, description)
  • test.fixme(callback, description)
  • test.fixme()

用法

您可以声明一个测试需要修复,Playwright 将不会运行它。

import { test, expect } from '@playwright/test';

test.fixme('to be fixed', async ({ page }) => {
// ...
});

如果您的测试应该在某些配置中被修复,但在所有配置中都不应该被修复,则可以根据某些条件在测试主体内部将测试标记为“fixme”。我们建议在这种情况下传递一个 description 参数。Playwright 将运行测试,但会在 test.fixme 调用之后立即中止它。

import { test, expect } from '@playwright/test';

test('to be fixed in Safari', async ({ page, browserName }) => {
test.fixme(browserName === 'webkit', 'This feature breaks in Safari for some reason');
// ...
});

您可以使用单个 test.fixme(callback, description) 调用将文件或 test.describe() 组中的所有测试标记为“fixme”。

import { test, expect } from '@playwright/test';

test.fixme(({ browserName }) => browserName === 'webkit', 'Should figure out the issue');

test('to be fixed in Safari 1', async ({ page }) => {
// ...
});
test('to be fixed in Safari 2', async ({ page }) => {
// ...
});

您还可以在测试主体内部无参数调用 test.fixme() 以始终将测试标记为失败。我们建议使用 test.fixme(title, body) 而不是。

import { test, expect } from '@playwright/test';

test('less readable', async ({ page }) => {
test.fixme();
// ...
});

参数

  • title 字符串 (可选)#

    测试标题。

  • details Object (可选)添加时间:v1.42#

    有关测试详细信息,请参阅 test()

  • body 函数(夹具, 测试信息) (可选)#

    测试主体,它接受一个或两个参数:一个包含夹具的对象,以及可选的 TestInfo

  • condition 布尔值 (可选)#

    当条件为 true 时,测试被标记为“应该失败”。

  • callback 函数(夹具):布尔值 (可选)#

    一个基于测试夹具返回是否标记为“应该失败”的函数。当返回值为 true 时,测试或测试被标记为“应该失败”。

  • description 字符串 (可选)#

    将在测试报告中反映的可选描述。


test.info

添加时间:v1.10 test.test.info

返回有关当前正在运行的测试的信息。此方法只能在测试执行期间调用,否则会抛出异常。

用法

test('example test', async ({ page }) => {
// ...
await test.info().attach('screenshot', {
body: await page.screenshot(),
contentType: 'image/png',
});
});

返回值


test.only

添加时间:v1.10 test.test.only

声明一个重点测试。如果有重点测试或套件,它们将全部运行,但其他测试则不会运行。

  • test.only(title, body)
  • test.only(title, details, body)

用法

test.only('focus this test', async ({ page }) => {
// Run only focused tests in the entire project.
});

参数


test.setTimeout

添加时间:v1.10 test.test.setTimeout

更改测试的超时时间。零表示没有超时。了解更多关于 各种超时 的信息。

当前正在运行的测试的超时时间可以通过 testInfo.timeout 获取。

用法

  • 更改测试超时时间。

    test('very slow test', async ({ page }) => {
    test.setTimeout(120000);
    // ...
    });
  • 从缓慢的 beforeEachafterEach 钩子更改超时时间。注意,这会影响与 beforeEach/afterEach 钩子共享的测试超时时间。

    test.beforeEach(async ({ page }, testInfo) => {
    // Extend timeout for all tests running this hook by 30 seconds.
    test.setTimeout(testInfo.timeout + 30000);
    });
  • 更改 beforeAllafterAll 钩子的超时时间。注意,这会影响钩子的超时时间,而不是测试超时时间。

    test.beforeAll(async () => {
    // Set timeout for this hook.
    test.setTimeout(60000);
    });
  • 更改 test.describe() 组中所有测试的超时时间。

    test.describe('group', () => {
    // Applies to all tests in this group.
    test.describe.configure({ timeout: 60000 });

    test('test one', async () => { /* ... */ });
    test('test two', async () => { /* ... */ });
    test('test three', async () => { /* ... */ });
    });

参数

  • timeout 数字#

    以毫秒为单位的超时时间。


test.skip

添加时间:v1.10 test.test.skip

跳过测试。Playwright 不会在 test.skip() 调用后运行测试。

跳过的测试不应该被运行。如果您打算修复测试,请使用 test.fixme() 代替。

声明一个跳过的测试

  • test.skip(title, body)
  • test.skip(title, details, body)

在运行时跳过测试

  • test.skip(condition, description)
  • test.skip(callback, description)
  • test.skip()

用法

您可以声明一个跳过的测试,Playwright 不会运行它。

import { test, expect } from '@playwright/test';

test.skip('never run', async ({ page }) => {
// ...
});

如果您的测试应该在某些配置中跳过,而不是全部跳过,您可以根据某些条件在测试体中跳过测试。我们建议在这种情况下传递一个 description 参数。Playwright 将运行测试,但在 test.skip 调用后立即中止。

import { test, expect } from '@playwright/test';

test('Safari-only test', async ({ page, browserName }) => {
test.skip(browserName !== 'webkit', 'This feature is Safari-only');
// ...
});

您可以使用单个 test.skip(callback, description) 调用根据某些条件跳过文件或 test.describe() 组中的所有测试。

import { test, expect } from '@playwright/test';

test.skip(({ browserName }) => browserName !== 'webkit', 'Safari-only');

test('Safari-only test 1', async ({ page }) => {
// ...
});
test('Safari-only test 2', async ({ page }) => {
// ...
});

您也可以在测试体中不带参数调用 test.skip() 来始终将测试标记为失败。我们建议使用 test.skip(title, body) 代替。

import { test, expect } from '@playwright/test';

test('less readable', async ({ page }) => {
test.skip();
// ...
});

参数

  • title 字符串 (可选)#

    测试标题。

  • details Object (可选)添加时间:v1.42#

    有关测试详细信息,请参阅 test()

  • body 函数(Fixtures, TestInfo) (可选)#

    测试主体,它接受一个或两个参数:一个包含夹具的对象,以及可选的 TestInfo

  • condition 布尔值 (可选)#

    当条件为 true 时,测试被标记为“应该失败”。

  • callback 函数(Fixtures):布尔值 (可选)#

    一个基于测试夹具返回是否标记为“应该失败”的函数。当返回值为 true 时,测试或测试被标记为“应该失败”。

  • description 字符串 (可选)#

    将在测试报告中反映的可选描述。


test.slow

添加时间:v1.10 test.test.slow

将测试标记为“慢”。慢速测试将获得默认超时的三倍。

注意,test.slow() 不能在 beforeAllafterAll 钩子中使用。请改用 test.setTimeout()

  • test.slow()
  • test.slow(condition, description)
  • test.slow(callback, description)

用法

您可以通过在测试体中调用 test.slow() 来将测试标记为慢速。

import { test, expect } from '@playwright/test';

test('slow test', async ({ page }) => {
test.slow();
// ...
});

如果您的测试在某些配置中很慢,但在其他配置中并不慢,您可以根据条件将它标记为慢速。我们建议在这种情况下传递一个 description 参数。

import { test, expect } from '@playwright/test';

test('slow in Safari', async ({ page, browserName }) => {
test.slow(browserName === 'webkit', 'This feature is slow in Safari');
// ...
});

您可以通过传递一个回调函数,根据某些条件将文件或 test.describe() 组中的所有测试标记为“慢速”。

import { test, expect } from '@playwright/test';

test.slow(({ browserName }) => browserName === 'webkit', 'all tests are slow in Safari');

test('slow in Safari 1', async ({ page }) => {
// ...
});
test('fail in Safari 2', async ({ page }) => {
// ...
});

参数

  • condition 布尔值 (可选)#

    当条件为 true 时,测试将被标记为“慢速”。

  • callback 函数(Fixtures):布尔值 (可选)#

    一个返回是否标记为“慢速”的函数,基于测试夹具。当返回值为 true 时,测试或测试将被标记为“慢速”。

  • description 字符串 (可选)#

    将在测试报告中反映的可选描述。


test.step

添加时间:v1.10 test.test.step

声明一个在报告中显示的测试步骤。

用法

import { test, expect } from '@playwright/test';

test('test', async ({ page }) => {
await test.step('Log in', async () => {
// ...
});

await test.step('Outer step', async () => {
// ...
// You can nest steps inside each other.
await test.step('Inner step', async () => {
// ...
});
});
});

参数

  • title 字符串#

    步骤名称。

  • body 函数():Promise<对象>#

    步骤体。

  • options 对象 (可选)

    • box 布尔值 (可选)新增于:v1.39#

      是否在报告中将步骤框起来。默认为 false。当步骤被框起来时,从步骤内部抛出的错误会指向步骤调用站点。有关更多详细信息,请参见下文。

    • location 位置 (可选)新增于:v1.48#

      指定在测试报告和跟踪查看器中显示步骤的自定义位置。默认情况下,会显示 test.step() 调用的位置。

返回值

细节

该方法返回步骤回调返回的值。

import { test, expect } from '@playwright/test';

test('test', async ({ page }) => {
const user = await test.step('Log in', async () => {
// ...
return 'john';
});
expect(user).toBe('john');
});

装饰器

您可以使用 TypeScript 方法装饰器将方法转换为步骤。对装饰方法的每次调用都将在报告中显示为一个步骤。

function step(target: Function, context: ClassMethodDecoratorContext) {
return function replacementMethod(...args: any) {
const name = this.constructor.name + '.' + (context.name as string);
return test.step(name, async () => {
return await target.call(this, ...args);
});
};
}

class LoginPage {
constructor(readonly page: Page) {}

@step
async login() {
const account = { username: 'Alice', password: 's3cr3t' };
await this.page.getByLabel('Username or email address').fill(account.username);
await this.page.getByLabel('Password').fill(account.password);
await this.page.getByRole('button', { name: 'Sign in' }).click();
await expect(this.page.getByRole('button', { name: 'View profile and more' })).toBeVisible();
}
}

test('example', async ({ page }) => {
const loginPage = new LoginPage(page);
await loginPage.login();
});

装箱

当步骤内部发生错误时,您通常会看到指向导致失败的具体操作的错误。例如,考虑以下登录步骤

async function login(page) {
await test.step('login', async () => {
const account = { username: 'Alice', password: 's3cr3t' };
await page.getByLabel('Username or email address').fill(account.username);
await page.getByLabel('Password').fill(account.password);
await page.getByRole('button', { name: 'Sign in' }).click();
await expect(page.getByRole('button', { name: 'View profile and more' })).toBeVisible();
});
}

test('example', async ({ page }) => {
await page.goto('https://github.com/login');
await login(page);
});
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
... error details omitted ...

8 | await page.getByRole('button', { name: 'Sign in' }).click();
> 9 | await expect(page.getByRole('button', { name: 'View profile and more' })).toBeVisible();
| ^
10 | });

如上所示,测试可能会失败并出现指向步骤内部的错误。如果您希望错误突出显示“登录”步骤而不是其内部,请使用 box 选项。装箱步骤内部的错误会指向步骤调用站点。

async function login(page) {
await test.step('login', async () => {
// ...
}, { box: true }); // Note the "box" option here.
}
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
... error details omitted ...

14 | await page.goto('https://github.com/login');
> 15 | await login(page);
| ^
16 | });

您还可以为装箱步骤创建 TypeScript 装饰器,类似于上面的常规步骤装饰器

function boxedStep(target: Function, context: ClassMethodDecoratorContext) {
return function replacementMethod(...args: any) {
const name = this.constructor.name + '.' + (context.name as string);
return test.step(name, async () => {
return await target.call(this, ...args);
}, { box: true }); // Note the "box" option here.
};
}

class LoginPage {
constructor(readonly page: Page) {}

@boxedStep
async login() {
// ....
}
}

test('example', async ({ page }) => {
const loginPage = new LoginPage(page);
await loginPage.login(); // <-- Error will be reported on this line.
});

test.use

添加时间:v1.10 test.test.use

指定单个测试文件或 test.describe() 组中要使用的选项或夹具。最常用于设置选项,例如设置 locale 来配置 context 夹具。

用法

import { test, expect } from '@playwright/test';

test.use({ locale: 'en-US' });

test('test with locale', async ({ page }) => {
// Default context and page have locale as specified
});

参数

细节

test.use 可以在全局范围或 test.describe 内部调用。在 beforeEachbeforeAll 中调用它是错误的。

也可以通过提供函数来覆盖夹具。

import { test, expect } from '@playwright/test';

test.use({
locale: async ({}, use) => {
// Read locale from some configuration file.
const locale = await fs.promises.readFile('test-locale', 'utf-8');
await use(locale);
},
});

test('test with locale', async ({ page }) => {
// Default context and page have locale as specified
});

属性

test.expect

添加时间:v1.10 test.test.expect

expect 函数可用于创建测试断言。了解更多关于 测试断言 的信息。

用法

test('example', async ({ page }) => {
await test.expect(page).toHaveTitle('Title');
});

类型


已弃用

test.describe.parallel

添加时间:v1.10 test.test.describe.parallel
不建议

有关配置执行模式的首选方法,请参见 test.describe.configure()

声明一组可以并行运行的测试。默认情况下,单个测试文件中的测试会依次运行,但使用 test.describe.parallel() 允许它们并行运行。

  • test.describe.parallel(title, callback)
  • test.describe.parallel(callback)
  • test.describe.parallel(title, details, callback)

用法

test.describe.parallel('group', () => {
test('runs in parallel 1', async ({ page }) => {});
test('runs in parallel 2', async ({ page }) => {});
});

请注意,并行测试是在独立进程中执行的,不能共享任何状态或全局变量。每个并行测试都执行所有相关的钩子函数。

您也可以省略标题。

test.describe.parallel(() => {
// ...
});

参数


test.describe.parallel.only

添加时间:v1.10 test.test.describe.parallel.only
不建议

有关配置执行模式的首选方法,请参见 test.describe.configure()

声明一组可以并行运行的聚焦测试。这类似于 test.describe.parallel(),但将焦点放在该组上。如果有任何聚焦测试或套件,则所有这些测试或套件都将被执行,但其他测试或套件将不会被执行。

  • test.describe.parallel.only(title, callback)
  • test.describe.parallel.only(callback)
  • test.describe.parallel.only(title, details, callback)

用法

test.describe.parallel.only('group', () => {
test('runs in parallel 1', async ({ page }) => {});
test('runs in parallel 2', async ({ page }) => {});
});

您也可以省略标题。

test.describe.parallel.only(() => {
// ...
});

参数


test.describe.serial

添加时间:v1.10 test.test.describe.serial
不建议

有关配置执行模式的首选方法,请参见 test.describe.configure()

声明一组始终应串行运行的测试。如果其中一项测试失败,则将跳过所有后续测试。该组中的所有测试都会一起重试。

注意

不建议使用 serial。通常最好使测试独立,以便它们可以独立运行。

  • test.describe.serial(title, callback)
  • test.describe.serial(title)
  • test.describe.serial(title, details, callback)

用法

test.describe.serial('group', () => {
test('runs first', async ({ page }) => {});
test('runs second', async ({ page }) => {});
});

您也可以省略标题。

test.describe.serial(() => {
// ...
});

参数


test.describe.serial.only

添加时间:v1.10 test.test.describe.serial.only
不建议

有关配置执行模式的首选方法,请参见 test.describe.configure()

声明一组始终应串行运行的聚焦测试。如果其中一项测试失败,则将跳过所有后续测试。该组中的所有测试都会一起重试。如果有任何聚焦测试或套件,则所有这些测试或套件都将被执行,但其他测试或套件将不会被执行。

注意

不建议使用 serial。通常最好使测试独立,以便它们可以独立运行。

  • test.describe.serial.only(title, callback)
  • test.describe.serial.only(title)
  • test.describe.serial.only(title, details, callback)

用法

test.describe.serial.only('group', () => {
test('runs first', async ({ page }) => {
});
test('runs second', async ({ page }) => {
});
});

您也可以省略标题。

test.describe.serial.only(() => {
// ...
});

参数