PlaywrightAssertions
Playwright 提供了 Web优先断言,并包含用于创建断言的便捷方法,这些断言将等待并重试,直到满足预期条件。
考虑以下示例
...
import static com.microsoft.playwright.assertions.PlaywrightAssertions.assertThat;
public class TestExample {
...
@Test
void statusBecomesSubmitted() {
...
page.locator("#submit-button").click();
assertThat(page.locator(".status")).hasText("Submitted");
}
}
Playwright 将不断重新测试具有选择器 .status
的节点,直到获取到的节点具有 "Submitted"
文本。它将不断重新获取节点并进行检查,直到满足条件或达到超时时间。您可以将此超时时间作为选项传递。
默认情况下,断言的超时时间设置为 5 秒。
方法
assertThat(response)
添加于:v1.18为给定的 APIResponse 创建一个 APIResponseAssertions 对象。
用法
PlaywrightAssertions.assertThat(response).isOK();
参数
-
response
APIResponse#用于断言的 APIResponse 对象。
返回
assertThat(locator)
添加于:v1.18为给定的 Locator 创建一个 LocatorAssertions 对象。
用法
PlaywrightAssertions.assertThat(locator).isVisible();
参数
返回
assertThat(page)
添加于:v1.18为给定的 Page 创建一个 PageAssertions 对象。
用法
PlaywrightAssertions.assertThat(page).hasTitle("News");
参数
返回
setDefaultAssertionTimeout
添加于:v1.25将 Playwright 断言的默认超时时间从 5 秒更改为指定的值。
用法
PlaywrightAssertions.setDefaultAssertionTimeout(30_000);
参数