PlaywrightAssertions
Playwright 提供了面向 Web 的断言,包含便捷方法,用于创建等待并重试直至满足预期条件的断言。
请考虑以下示例
using Microsoft.Playwright;
using Microsoft.Playwright.MSTest;
namespace PlaywrightTests;
[TestClass]
public class ExampleTests : PageTest
{
[TestMethod]
public async Task StatusBecomesSubmitted()
{
await Page.GetByRole(AriaRole.Button, new() { Name = "Submit" }).ClickAsync();
await Expect(Page.Locator(".status")).ToHaveTextAsync("Submitted");
}
}
Playwright 将不断重新测试选择器为 .status
的节点,直到获取的节点包含文本 "Submitted"
。它将不断重新获取节点并进行检查,直到条件满足或超时。您可以将超时作为选项传递。
默认情况下,断言的超时设置为 5 秒。
方法
Expect(response)
新增于:v1.18为给定的 APIResponse 创建一个 APIResponseAssertions 对象。
用法
参数
-
response
APIResponse#用于断言的 APIResponse 对象。
返回值
Expect(locator)
新增于:v1.18为给定的 Locator 创建一个 LocatorAssertions 对象。
用法
await Expect(locator).ToBeVisibleAsync();
参数
返回值
Expect(page)
新增于:v1.18为给定的 Page 创建一个 PageAssertions 对象。
用法
await Expect(Page).ToHaveTitleAsync("News");
参数
返回值