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

520 B

sidebar_label
HTTPRequest.hasPostData

HTTPRequest.hasPostData() method

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().

Signature:

class HTTPRequest {
  abstract hasPostData(): boolean;
}

Returns:

boolean