Back to Puppeteer

HTTPRequest.hasPostData() method

website/versioned_docs/version-24.40.0/api/puppeteer.httprequest.haspostdata.md

19.2.2469 B
Original Source

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

typescript
class HTTPRequest {
  abstract hasPostData(): boolean;
}

Returns:

boolean