8.2 KiB
sidebar_label |
---|
HTTPRequest |
HTTPRequest class
Represents an HTTP request sent by a page.
Signature:
export declare abstract class HTTPRequest
Remarks
Whenever the page sends a request, such as for a network resource, the following events are emitted by Puppeteer's page
:
request
: emitted when the request is issued by the page. -requestfinished
- emitted when the response body is downloaded and the request is complete.
If request fails at some point, then instead of requestfinished
event the requestfailed
event is emitted.
All of these events provide an instance of HTTPRequest
representing the request that occurred:
page.on('request', request => ...)
NOTE: HTTP Error responses, such as 404 or 503, are still successful responses from HTTP standpoint, so request will complete with requestfinished
event.
If request gets a 'redirect' response, the request is successfully finished with the requestfinished
event, and a new request is issued to a redirected url.
The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the HTTPRequest
class.
Properties
Property |
Modifiers |
Type |
Description |
---|---|---|---|
client |
|
(Experimental) Warning! Using this client can break Puppeteer. Use with caution. |
Methods
Method |
Modifiers |
Description |
---|---|---|
Aborts a request. Remarks: To use this, request interception should be enabled with Page.setRequestInterception(). If it is not enabled, this method will throw an exception immediately. | ||
The most recent reason for aborting the request | ||
Continues request with optional request overrides. Remarks: To use this, request interception should be enabled with Page.setRequestInterception(). Exception is immediately thrown if the request interception is not enabled. | ||
The | ||
Adds an async request handler to the processing queue. Deferred handlers are not guaranteed to execute in any particular order, but they are guaranteed to resolve before the request interception is finalized. | ||
Access information about the request's failure. Remarks: | ||
Fetches the POST data for the request from the browser. | ||
Awaits pending interception handlers and then decides how to fulfill the request interception. | ||
The frame that initiated the request, or null if navigating to error pages. | ||
True when the request has POST data. Note that HTTPRequest.postData() might still be undefined when this flag is true when the data is too long or not readily available in the decoded form. In that case, use HTTPRequest.fetchPostData(). | ||
An object with HTTP headers associated with the request. All header names are lower-case. | ||
The initiator of the request. | ||
An InterceptResolutionState object describing the current resolution action and priority. InterceptResolutionState contains: action: InterceptResolutionAction priority?: number InterceptResolutionAction is one of: | ||
Is | ||
|
True if the request is the driver of the current frame's navigation. | |
The method used ( | ||
The request's post body, if any. | ||
A Remarks:
For example, if the website
If the website
| ||
Contains the request's resource type as it was perceived by the rendering engine. | ||
Fulfills a request with the given response. Remarks: To use this, request interception should be enabled with Page.setRequestInterception(). Exception is immediately thrown if the request interception is not enabled. | ||
A matching | ||
The | ||
The URL of the request |