Page.waitForResponse() 方法
签名:
class Page {
waitForResponse(
urlOrPredicate: string | AwaitablePredicate<HTTPResponse>,
options?: WaitTimeoutOptions
): Promise<HTTPResponse>;
}
参数
参数 | 类型 | 描述 |
---|---|---|
urlOrPredicate | string | AwaitablePredicate<HTTPResponse> | 要等待的 URL 或谓词。 |
options | WaitTimeoutOptions | (可选) 可选等待参数 |
返回值
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();