PlaywrightAssertions
Playwright 为您提供 Web-First 断言,以及用于创建断言的便捷方法,这些断言将等待和重试,直到满足预期条件。
考虑以下示例
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为给定的 APIResponseAssertions 对象创建 APIResponse。
用法
参数
-
response
APIResponse#用于断言的 APIResponse 对象。
返回值
expect(value)
添加于: v1.9为给定的值创建 GenericAssertions 对象。
用法
expect(value);
参数
返回值
expect(locator)
添加于: v1.18为给定的 LocatorAssertions 对象创建 Locator。
用法
参数
返回值
expect(page)
添加于: v1.18为给定的 PageAssertions 对象创建 Page。
用法
参数
返回值