get()
Last updated 1/10/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.
Available
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 HTTPResponseobject for RAW mode.
- Returns BrowserPageobject for BROWSER mode.