mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
93e9acc410
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
1.4 KiB
1.4 KiB
sidebar_label |
---|
Page.waitForRequest |
Page.waitForRequest() method
Signature:
class Page {
waitForRequest(
urlOrPredicate: string | AwaitablePredicate<HTTPRequest>,
options?: WaitTimeoutOptions
): Promise<HTTPRequest>;
}
Parameters
Parameter |
Type |
Description |
---|---|---|
urlOrPredicate |
string | AwaitablePredicate<HTTPRequest> |
A URL or predicate to wait for |
options |
(Optional) Optional waiting parameters |
Promise<HTTPRequest>
Promise which resolves to the matched request
Remarks
Optional Waiting Parameters have:
timeout
: Maximum wait time in milliseconds, defaults to30
seconds, pass0
to disable the timeout. The default value can be changed by using the Page.setDefaultTimeout() method.
Example
const firstRequest = await page.waitForRequest('https://example.com/resource');
const finalRequest = await page.waitForRequest(
request => request.url() === 'https://example.com'
);
return finalRequest.response()?.ok();