事件
介绍
Playwright 允许监听网页上发生的各种事件,例如网络请求、子页面的创建、专用 worker 等。有多种方法可以订阅此类事件,例如等待事件或添加或删除事件监听器。
等待事件
大多数情况下,脚本需要等待特定事件发生。以下是一些典型的事件等待模式。
使用 Page.RunAndWaitForRequestAsync() 等待具有指定 URL 的请求
var waitForRequestTask = page.WaitForRequestAsync("**/*logo*.png");
await page.GotoAsync("https://wikipedia.org");
var request = await waitForRequestTask;
Console.WriteLine(request.Url);
等待弹出窗口
var popup = await page.RunAndWaitForPopupAsync(async =>
{
await page.GetByText("open the popup").ClickAsync();
});
await popup.GotoAsync("https://wikipedia.org");
添加/删除事件监听器
有时,事件会随机发生,需要处理事件,而不是等待事件。Playwright 支持传统的语言机制来订阅和取消订阅事件
page.Request += (_, request) => Console.WriteLine("Request sent: " + request.Url);
void listener(object sender, IRequest request)
{
Console.WriteLine("Request finished: " + request.Url);
};
page.RequestFinished += listener;
await page.GotoAsync("https://wikipedia.org");
// Remove previously added listener.
page.RequestFinished -= listener;
await page.GotoAsync("https://www.openstreetmap.org/");