PlaywrightAssertions
Playwright 提供了 Web-First 断言,它提供便捷的方法来创建断言,这些断言会等待并重试,直到满足预期条件。
考虑以下示例
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为给定的 APIResponseAssertions 对象创建一个 APIResponse。
用法
PlaywrightAssertions.assertThat(response).isOK();
参数
-
response
APIResponse#用于断言的 APIResponse 对象。
返回值
assertThat(locator)
添加于: v1.18为给定的 LocatorAssertions 对象创建一个 Locator。
用法
PlaywrightAssertions.assertThat(locator).isVisible();
参数
返回值
assertThat(page)
添加于: v1.18为给定的 PageAssertions 对象创建一个 Page。
用法
PlaywrightAssertions.assertThat(page).hasTitle("News");
参数
返回值
setDefaultAssertionTimeout
添加于: v1.25将 Playwright 断言的默认超时时间从 5 秒更改为指定的值。
用法
PlaywrightAssertions.setDefaultAssertionTimeout(30_000);
参数