get()
Last updated 2/04/2024
The get()
is a function used on the HTTPClient
object that will issue a GET
request to the server and based on the mode provided 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.
Server
Function Signature
get([mode: string,] url: string) : HTTPResponse | BrowserPage;
Parameter | Type | Description |
---|---|---|
mode | string | Optional mode type |
url | string | The URL string |
Return Value
- Returns
HTTPResponse
object for RAW mode. - Returns
BrowserPage
object for BROWSER mode.