跳至主要内容
版本:22.5.0

Page.waitForRequest() 方法

签名:

class Page {
waitForRequest(
urlOrPredicate: string | AwaitablePredicate<HTTPRequest>,
options?: WaitTimeoutOptions
): Promise<HTTPRequest>;
}

参数

参数类型描述
urlOrPredicate字符串 | AwaitablePredicate<HTTPRequest>要等待的 URL 或谓词
optionsWaitTimeoutOptions(可选)可选的等待参数

返回

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();