Playwright断言
Playwright 提供了以 Web 为首的断言,并带有便捷方法来创建断言,这些断言将等待并重试,直到满足预期条件。
考虑以下示例
import { test, expect } from '@playwright/test';
test('status becomes submitted', async ({ page }) => {
// ...
await page.locator('#submit-button').click();
await expect(page.locator('.status')).toHaveText('Submitted');
});
Playwright 将不断重新测试具有选择器 .status
的节点,直到获取到的节点具有 "Submitted"
文本。它将不断重新获取节点并进行检查,直到满足条件或达到超时时间。您可以将此超时时间作为选项传递。
默认情况下,断言的超时时间设置为 5 秒。
方法
expect(response)
添加于:v1.18为给定的 APIResponse 创建一个 APIResponseAssertions 对象。
用法
参数
-
response
APIResponse#用于断言的 APIResponse 对象。
返回
expect(value)
添加于:v1.9为给定值创建一个 GenericAssertions 对象。
用法
expect(value);
参数
返回
expect(locator)
添加于:v1.18为给定的 Locator 创建一个 LocatorAssertions 对象。
用法
参数
返回
expect(page)
添加于:v1.18为给定的 Page 创建一个 PageAssertions 对象。
用法
参数
返回