超时
Playwright Test 为各种任务提供了多个可配置的超时。
超时 | 默认值 | 描述 |
---|---|---|
测试超时 | 30_000 毫秒 | 每个测试的超时 在配置中设置 { timeout: 60_000 } 在测试中覆盖 test.setTimeout(120_000) |
期望超时 | 5_000 毫秒 | 每个断言的超时 在配置中设置 { expect: { timeout: 10_000 } } 在测试中覆盖 expect(locator).toBeVisible({ timeout: 10_000 }) |
测试超时
Playwright Test 为每个测试强制设置超时,默认为 30 秒。测试函数、fixture 设置和 beforeEach
钩子所花费的时间都包含在测试超时中。
超时的测试会产生以下错误
example.spec.ts:3:1 › basic test ===========================
Timeout of 30000ms exceeded.
测试函数完成后,fixture 拆卸和 afterEach
钩子之间共享一个额外独立的超时,其值与测试超时相同。
相同的超时值也适用于 beforeAll
和 afterAll
钩子,但它们不与任何测试共享时间。
在配置中设置测试超时
import { defineConfig } from '@playwright/test';
export default defineConfig({
timeout: 120_000,
});
API 参考:testConfig.timeout。
设置单个测试的超时
import { test, expect } from '@playwright/test';
test('slow test', async ({ page }) => {
test.slow(); // Easy way to triple the default timeout
// ...
});
test('very slow test', async ({ page }) => {
test.setTimeout(120_000);
// ...
});
API 参考:test.setTimeout() 和 test.slow()。
在 beforeEach
钩子中更改超时
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 + 30_000);
});
API 参考:testInfo.setTimeout()。
更改 beforeAll
/afterAll
钩子的超时
beforeAll
和 afterAll
钩子有单独的超时,默认为测试超时。你可以通过在钩子中调用 testInfo.setTimeout() 来分别为每个钩子更改超时。
import { test, expect } from '@playwright/test';
test.beforeAll(async () => {
// Set timeout for this hook.
test.setTimeout(60000);
});
API 参考:testInfo.setTimeout()。
期望超时
像 expect(locator).toHaveText() 这样的自动重试断言有单独的超时,默认为 5 秒。断言超时与测试超时无关。它会产生以下错误
example.spec.ts:3:1 › basic test ===========================
Error: expect(received).toHaveText(expected)
Expected string: "my text"
Received string: ""
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for "locator('button')"
在配置中设置期望超时
import { defineConfig } from '@playwright/test';
export default defineConfig({
expect: {
timeout: 10_000,
},
});
API 参考:testConfig.expect。
为单个断言指定期望超时
import { test, expect } from '@playwright/test';
test('example', async ({ page }) => {
await expect(locator).toHaveText('hello', { timeout: 10_000 });
});
全局超时
Playwright Test 支持整个测试运行的超时。这可以在一切出错时防止资源过度使用。没有默认的全局超时,但你可以在配置中设置一个合理的值,例如一小时。全局超时会产生以下错误
Running 1000 tests using 10 workers
514 skipped
486 passed
Timed out waiting 3600s for the entire test run
你可以在配置中设置全局超时。
import { defineConfig } from '@playwright/test';
export default defineConfig({
globalTimeout: 3_600_000,
});
API 参考:testConfig.globalTimeout。
高级:低级别超时
这些是由测试运行器预先配置的低级别超时,你通常不需要更改它们。如果你因为测试不稳定而看到本节,很可能你应该在其他地方寻找解决方案。
超时 | 默认值 | 描述 |
---|---|---|
操作超时 | 无超时 | 每个操作的超时 在配置中设置 { use: { actionTimeout: 10_000 } } 在测试中覆盖 locator.click({ timeout: 10_000 }) |
导航超时 | 无超时 | 每个导航操作的超时 在配置中设置 { use: { navigationTimeout: 30_000 } } 在测试中覆盖 page.goto('/', { timeout: 30_000 }) |
全局超时 | 无超时 | 整个测试运行的全局超时 在配置中设置 { globalTimeout: 3_600_000 } |
beforeAll /afterAll 超时 | 30_000 毫秒 | 钩子的超时 在钩子中设置 test.setTimeout(60_000) |
Fixture 超时 | 无超时 | 单个 fixture 的超时 在 fixture 中设置 { scope: 'test', timeout: 30_000 } |
在配置中设置操作和导航超时
import { defineConfig } from '@playwright/test';
export default defineConfig({
use: {
actionTimeout: 10 * 1000,
navigationTimeout: 30 * 1000,
},
});
API 参考:testOptions.actionTimeout 和 testOptions.navigationTimeout。
设置单个操作的超时
import { test, expect } from '@playwright/test';
test('basic test', async ({ page }) => {
await page.goto('https://playwright.net.cn', { timeout: 30000 });
await page.getByText('Get Started').click({ timeout: 10000 });
});
Fixture 超时
默认情况下,fixture 与测试共享超时。但是,对于运行缓慢的 fixture,特别是 worker-scoped 的 fixture,拥有单独的超时会很方便。这样可以保持总体测试超时较小,同时为运行缓慢的 fixture 提供更多时间。
import { test as base, expect } from '@playwright/test';
const test = base.extend<{ slowFixture: string }>({
slowFixture: [async ({}, use) => {
// ... perform a slow operation ...
await use('hello');
}, { timeout: 60_000 }]
});
test('example test', async ({ slowFixture }) => {
// ...
});
API 参考:test.extend()。