puppeteer/docs/api/puppeteer.httprequest.fetchpostdata.md
2024-01-02 11:02:08 +01:00

309 B

sidebar_label
HTTPRequest.fetchPostData

HTTPRequest.fetchPostData() method

Fetches the POST data for the request from the browser.

Signature:

class HTTPRequest {
  abstract fetchPostData(): Promise<string | undefined>;
}

Returns:

Promise<string | undefined>