Skip to content

Latest commit

 

History

History
80 lines (50 loc) · 1.36 KB

puppeteer.page.waitforrequest.md

File metadata and controls

80 lines (50 loc) · 1.36 KB
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

WaitTimeoutOptions

(Optional) Optional waiting parameters

**Returns:**

Promise<HTTPRequest>

Promise which resolves to the matched request

Remarks

Optional Waiting Parameters have:

  • timeout: Maximum wait time in milliseconds, defaults to 30 seconds, pass 0 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();