Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 520 Bytes

puppeteer.httprequest.haspostdata.md

File metadata and controls

19 lines (13 loc) · 520 Bytes
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