跳至主要内容
版本: 22.5.0

Page.waitForResponse() 方法

签名:

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

参数

参数类型描述
urlOrPredicatestring | AwaitablePredicate<HTTPResponse>要等待的 URL 或谓词。
optionsWaitTimeoutOptions(可选) 可选等待参数

返回值

Promise<HTTPResponse>

解析为匹配响应的 Promise。

备注

可选参数有

  • timeout: 最大等待时间(毫秒),默认值为 30 秒,传递 0 禁用超时。可以使用 Page.setDefaultTimeout() 方法更改默认值。

示例

const firstResponse = await page.waitForResponse(
'https://example.com/resource'
);
const finalResponse = await page.waitForResponse(
response =>
response.url() === 'https://example.com' && response.status() === 200
);
const finalResponse = await page.waitForResponse(async response => {
return (await response.text()).includes('<html>');
});
return finalResponse.ok();