Scripts

Customise requests, automate repetitive tasks and create custom workflows using Testfully's scripting feature.

Testfully supports Javascript (ES2020) for scripting. You can write scripts for your requests, folders, and the entire collection. You have the option to run your scripts before or after a request is sent. Also, Testfully offers a range of built-in functions that you can use in your scripts to interact with the request, response, and other parts of the application.

Attention! Postman Users

Our goal is to fully support Postman's scripting syntax. You can copy and paste your Postman scripts into Testfully and they will work without any changes. Although the pm object is available, we kindly ask you to take your time and change it to $. When importing a Postman collection, Testfully automatically brings all of your scripts.

Features

The table below shows the list of features that are available/coming in Testfully's scripting environment and their status.

FeatureStatus
Supports ES2020, write code in modern Javascript
Available
All native APIs including JSON.parse() etc are available
Available
Access & Modify Request
Available
Access Response Data
Available
Work with global variables
Available
Work with environment variables
Available
Work with collection and folder variables
Available
Send HTTP requests
Available
API Testing using using test and expect APIs
Available
Import & use npm packages
Available
Chain requests via code
Coming Soon

Supported APIs

Testfully offers a range of built-in APIs to use for scripting. You can use these APIs to interact with the request, response, and other parts of the application.

You should know!

All of the APIs are available via the $ global variable. To use Testfully API, simply type $.

Send a request

Use the $.sendRequest() API to send a request. This API accepts a request object, or a URL, as its first parameter and returns the response.

Basic Get Request

The example below sends a request to the https://httpbin.org/anything endpoint and stores the response in the response variable. The response variable is then used to log the response body.

const response = $.sendRequest("https://httpbin.org/anything");
console.log(response);

Request Object

The example below sends a request to the https://httpbin.org/anything endpoint and stores the response in the response variable. The response variable is then used to log the response body.

const request = {
  method: "POST",
  url: "https://httpbin.org/anything",
  headers: {
    "Content-Type": "application/json",
  },
  body: {
    mode: "raw",
    raw: {
      name: "Testfully",
    },
  },
};

const response = $.sendRequest(request);
console.log(response);

Setting up a request timeout

Testfully waits for the response to be received for 30 seconds by default. You can change this timeout value by setting the timeout property of the request object. The example below sets the timeout value to 1 second.

const request = {
  method: "POST",
  url: "https://httpbin.org/anything",
  timeout: 1,
};

Working with requests

Use the $.request API to work with the current request. Testfully offers the following APIs to work with the request.

APIDescription
$.request.methodGet the HTTP method of the request.
$.request.urlGet the URL of the request.
$.request.type Get the type of the request.
$.request.headersGet the headers of the request.
$.request.headers.add({ key, value })Add a new header
$.request.headers.upsert({ key, value })Upsert a header
$.request.headers.remove(key)Remove a header
$.request.paramsGet the params of the request.
$.request.bodyGet the body of the request.
$.request.body.jsonGet the JSON payload for the request.
$.request.body.queryGraphQL query for the request.
$.request.body.variablesGraphQL variables for the variables.
$.request.body.formForm fields for both formdata and urlencoded requests.
$.request.skip()Skip the execution of current request.
$.setNextRequest()Set the next request to be executed.

Working with response

Use the $.response API to work with the response of the current request. Testfully offers the following APIs to work with the response.

APIDescription
$.response.codeGet the HTTP status code of the response.
$.response.statusGet the HTTP status of the response.
$.response.headersGet the headers of the response.
$.response.bodyGet the response body in plain text (string).
$.response.text()Returns the response body in plain text (string).
$.response.json()Returns the response body as a Javascript object. Throws an error when the response body is not a valid JSON.
$.response.responseTimeGet the response time of the response.
$.response.responseSizeGet the response size of the response.

Logging

Use the global console object to log messages to the console. The logs are available in the "Logs" tab of the request. Testfully supports the following logging APIs:

APIDescription
console.log(message)Logs a message to the console.
console.info(message)Logs an informational message to the console.
console.warn(message)Logs a warning message to the console.
console.error(message)Logs an error message to the console.

Example

console.log("Hello World!");
console.warn("request failed error was ->", $.response.code);

Working with globals

Use the $.globals API to work with global variables in your workspace. For compatibility reasons, Testfully supports the pm.globals object. However, we recommend using the $.globals object instead.

APIDescription
$.globals.get(name)Get the value of a global variable.
$.globals.has(name)Check if a global variable exists.
$.globals.set(name, value)Sets value of a global variable
$.globals.unset(name)Unsets value of a global variable
$.globals.clear()Removes all of the global variables in one go
$.globals.toObject()Returns all of the global variables as an object

Working with environment variables

Use the $.environment API to work with the active environment (currently selected). For compatibility reasons, Testfully supports the pm.environment object. However, we recommend using the $.environment object instead.

APIDescription
$.environment.get(name)Get the value of an environment variable.
$.environment.has(name)Check if an environment variable exists.
$.environment.set(name, value)Sets value of an environment variable
$.environment.unset(name)Unsets value of an environment variable
$.environment.clear()Removes all of the environment variables in one go
$.environment.toObject()Returns all of the environment variables as an object

Working with parent folder variables

Requests within a folder can access the variables defined in the parent folder, update them, delete them, or add new ones. Use the $.parentFolder.variables family of APIs to work with the parent folder variables.

APIDescription
$.parentFolder.variables.get(name)Returns the value of a variable defined in the parent folder.
$.parentFolder.variables.has(name)Returns true if the provided variable exists in the parent folder.
$.parentFolder.variables.set(name, value)Sets value of a variable defined in the parent folder.
$.parentFolder.variables.unset(name)Unsets value of a variable defined in the parent folder.
$.parentFolder.variables.clear()Removes all of the variables defined in the parent folder.
$.parentFolder.variables.toObject()Returns all of the variables defined in the parent folder as an object

Working with user-scoped variables

Workspaces on Lite, Plus and Premium plans can use user-scoped variables. To work with user-scoped variables programmatically, pass true as the last parameter to all of the APIs mentioned above. The example below shows how to work with user-scoped variables.

// Returns the value of a variable called `access_token` defined in the parent folder,
// as a user-scoped variable for the current user.
$.parentFolder.variables.get("access_token", true);

// Returns true if the parent folder has a user-scoped variable called `access_token`,
// for the current user.
$.parentFolder.variables.has("access_token", true);

// Sets value of a variable called `access_token` defined in the parent folder,
// as a user-scoped variable for the current user.
$.parentFolder.variables.set("access_token", "value", true);

// Unsets value of a variable called `access_token` defined in the parent folder,
// as a user-scoped variable for the current user.
$.parentFolder.variables.unset("access_token", true);

// Removes all of the variables defined in the parent folder,
// as a user-scoped variable for the current user.
$.parentFolder.variables.clear(true);

// Returns all of the variables defined in the parent folder,
// as a user-scoped variable for the current user.
$.parentFolder.variables.toObject(true);

Working with root folder variables

Requests within a folder can access the variables defined in the root folder (the folder that hosts all other folders), update them, delete them, or add new ones. Use the $.rootFolder.variables family of APIs to work with the parent folder variables.

APIDescription
$.rootFolder.variables.get(name)Returns the value of a variable defined in the root folder.
$.rootFolder.variables.has(name)Returns true if the provided variable exists in the root folder.
$.rootFolder.variables.set(name, value)Sets value of a variable defined in the root folder.
$.rootFolder.variables.unset(name)Unsets value of a variable defined in the root folder.
$.rootFolder.variables.clear()Removes all of the variables defined in the root folder.
$.rootFolder.variables.toObject()Returns all of the variables defined in the root folder as an object

Testfully's support of pm.collectionVariables

For compatibility reasons, Testfully supports the pm.collectionVariables object. However, we recommend using the $.rootFolderVariables object instead.

APIDescription
pm.collectionVariables.get(name)Returns the value of a variable defined in the root folder.
pm.collectionVariables.has(name)Returns true if the provided variable exists in the root folder.
pm.collectionVariables.set(name, value)Sets value of a variable defined in the root folder.
pm.collectionVariables.unset(name)Unsets value of a variable defined in the root folder.
pm.collectionVariables.clear()Removes all of the variables defined in the root folder.
pm.collectionVariables.toObject()Returns all of the variables defined in the root folder as an object

The example below shows how to use the pm.collectionVariables object.

// Returns the value of a variable called `access_token` defined in the root folder.
pm.collectionVariables.get("access_token");

// Returns true if the root folder has a variable called `access_token`.
pm.collectionVariables.has("access_token");

// Sets value of a variable called `access_token` defined in the root folder.
pm.collectionVariables.set("access_token", "value");

// Unsets value of a variable called `access_token` defined in the root folder.
pm.collectionVariables.unset("access_token");

// Removes all of the variables defined in the root folder.
pm.collectionVariables.clear();

// Returns all of the variables defined in the root folder.
pm.collectionVariables.toObject();

Working with user-scoped variables

Root folders, like other folders, can have user-scoped variables. To work with user-scoped variables programmatically, pass true as the last parameter to all of the APIs mentioned above. The example below shows how to work with user-scoped variables.

// Returns the value of a variable called `access_token` defined in the root folder,
// as a user-scoped variable for the current user.
$.rootFolder.variables.get("access_token", true);

// Returns true if the root folder has a user-scoped variable called `access_token`,
// for the current user.
$.rootFolder.variables.has("access_token", true);

// Sets value of a variable called `access_token` defined in the root folder,
// as a user-scoped variable for the current user.
$.rootFolder.variables.set("access_token", "value", true);

// Unsets value of a variable called `access_token` defined in the root folder,
// as a user-scoped variable for the current user.
$.rootFolder.variables.unset("access_token", true);

// Removes all of the variables defined in the root folder,
// as a user-scoped variable for the current user.
$.rootFolder.variables.clear(true);

// Returns all of the variables defined in the root folder,
// as a user-scoped variable for the current user.
$.rootFolder.variables.toObject(true);

Using npm packages

The ability to import npm packages is available via a Plus (or higher) subscription or a Testfully Offline license.

Publicly available NPM packages can be imported and used using the standard import syntax. The example below demonstrates how lodash module can be imported and used in Testfully.

import _ from "lodash";
const result = _.merge({ name: "Teddy" }, { location: "AUS" });
console.log(result);

The pm.info object

For compatibility reasons, Testfully supports the pm.info object.

APIDescription
pm.info.eventNamepre for scripts that are executed before a request or test for scripts that are executed after sending a request
pm.info.requestNameGet the name of the request.
pm.info.requestIdGet the ID of the request.
pm.info.iterationGet the current iteration number.
pm.info.iterationCountGet the total number of iterations.

Postman Legacy APIs

In addition to the currently supported Postman APIs, Testfully also supports Postman's legacy API. The table below shows the list of legacy APIs that are available in Testfully.

APIDescriptionStatus
postman.setEnvironmentVariable(name, value)Sets the value of an environment variable.
Available
postman.getEnvironmentVariable(name)Returns the value of an environment variable.
Available
postman.clearEnvironmentVariables(name)Removes an environment variable.
Available
postman.setGlobalVariable(name, value)Sets the value of a global variable.
Available
postman.getGlobalVariable(name)Returns the value of a global variable.
Available
postman.clearGlobalVariables(name)Removes a global variable.
Available
postman.getResponseHeader(name)Get value for a response header.
Available
responseBodyGet the response body in plain text (string).
Available
responseHeadersGet the headers of the response in form of an object.
Available
responseCode Get the HTTP status code of the response.
Available
responseTime Get the response time of the response.
Available
tests objectWriting tests using the tests object.
Available
globals objectfeat/scripting_apisGlobal variables and their values are available via the globals object.
Available

Working with async code

If you have experience with Javascript and async code, you may have noticed that the Testfully examples above for any kind of async code, including sendRequest and $.globals.set(), are written synchronously. This is because Testfully automatically handles async code for you. You can write your code in a synchronous way and Testfully will take care of the rest.

API Testing

You can use the "After" script of a request to write automated tests. Once the response is received, Testfully will run your tests and show the results in the "Validations" tab of the request.

Attention! Postman Users

Similar to Postman, Testfully uses Chai Assertion Library for assertions. Testfully also supports the pm object for assertions so both pm.test() and pm.expect() works. However, we recommend using the $ object for assertions.

The $.test() API

Use the $.test() API to write tests. This API accepts a name and a function as its parameters. The function is where you write your tests. The example below shows how to use the $.test() API.

$.test("Status code is 200", function () {
  // Write your tests here
});

The $.expect() API

Use the $.expect() API to write assertions. This API accepts a value and returns an object with a set of assertion methods. The example below shows how to use the $.expect() API. Check out the Chai Assertion Library for a full list of assertion methods.

$.test("Status code is 200", function () {
  $.expect($.response.code).to.equal(200);
});