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