Page.waitForRequest() 方法
签名:
class Page {
waitForRequest(
urlOrPredicate: string | AwaitablePredicate<HTTPRequest>,
options?: WaitTimeoutOptions
): Promise<HTTPRequest>;
}
参数
参数 | 类型 | 描述 |
---|---|---|
urlOrPredicate | 字符串 | AwaitablePredicate<HTTPRequest> | 要等待的 URL 或谓词 |
options | WaitTimeoutOptions | (可选)可选的等待参数 |
返回
Promise<HTTPRequest>
解析为匹配请求的 Promise
备注
可选等待参数具有
timeout
:最大等待时间(以毫秒为单位),默认为30
秒,传递0
以禁用超时。可以通过使用 Page.setDefaultTimeout() 方法更改默认值。
示例
const firstRequest = await page.waitForRequest('https://example.com/resource');
const finalRequest = await page.waitForRequest(
request => request.url() === 'https://example.com'
);
return finalRequest.response()?.ok();