Skip to main content

post()

Last updated 2/04/2024

The post() is a function used on the HTTPClient object that will send data to the server as a POST request and will return either a HTTP response, or a headless browser page which can be interacted with. If no mode is supplied, the default is RAW.

Available

Server


Function Signature
post([mode: string,] url: string) : HTTPResponse | BrowserPage;

ParameterTypeDescription
modestringOptional mode type
urlstringThe URL string

Return Value

  • Returns HTTPResponse object for RAW mode.
  • Returns BrowserPage object for BROWSER mode.

Examples

post()