utils

Provides miscellaneous utility methods.

decrypt

Decrypt text

** Usage example:**

// to encrypt plaintext into ciphertext 
const encrypt = utils.encrypt('https://www.wikipedia.org');
log.info(encrypt); // will print b757ba2c2fc50fbb511d596816ca06c4fa56f4e98ce222f30bc58d5251ed635e

// to decrypt ciphertext and use it in script  
const decrypt = utils.decrypt(encrypt);
log.info(decrypt); // will print ENCRYPTED

web.init();
web.open(decrypt); // will open https://www.wikipedia.org

// to get original plaintext use getDecryptResult
const value = decrypt.getDecryptResult();
log.info(value); //will print https://www.wikipedia.org

Parameters:

NameTypeDescription

text

String

Text

Returns:

Object - DecryptResult Object with getDecryptResult method

dnsResolve

Uses the DNS protocol to resolve a host name

Parameters:

NameTypeDescription

hostname

String

Host name to resolve.

rrType

String

optional Resource record type. Default: 'A'.

Returns:

(Array.<String>|Object) - Array or Object of resource records. The type and structure of individual results vary based on rrtype

encrypt

Encrypt text

** Usage example:**

// to encrypt plaintext into ciphertext 
const encrypt = utils.encrypt('https://www.wikipedia.org');
log.info(encrypt); // will print b757ba2c2fc50fbb511d596816ca06c4fa56f4e98ce222f30bc58d5251ed635e

// to decrypt ciphertext and use it in script  
const decrypt = utils.decrypt(encrypt);
log.info(decrypt); // will print ENCRYPTED

web.init();
web.open(decrypt); // will open https://www.wikipedia.org

// to get original plaintext use getDecryptResult
const value = decrypt.getDecryptResult();
log.info(value); //will print https://www.wikipedia.org

Parameters:

NameTypeDescription

text

String

Text

Returns:

String - Encrypted text

pause

Pause test execution for the given amount of milliseconds.

Parameters:

NameTypeDescription

ms

Number

Milliseconds to pause the execution for.

readCsv

Reads data from csv file

Parameters:

NameTypeDescription

filePath

String

Absolute path to file

options

Object

optional Options

readXlsx

Reads data from Xlsx file

Parameters:

NameTypeDescription

filePath

String

Absolute path to file

Returns:

Array - Array of xlsx data

transaction

Opens new transaction.

The transaction will persist untill a new one is opened. Transaction names must be unique.

Parameters:

NameTypeDescription

name

String

The transaction name.

writeCsv

Writes data into csv file

Parameters:

NameTypeDescription

filePath

String

Absolute path to file

data

Array

CSV data in format [{column_name_1: 'foo', column_name_2: 'bar'}]

options

Object

optional Options

xmlToJson

Parse XML data to JS object

Parameters:

NameTypeDescription

xmlDataStr

string|Buffer

Like

options

boolean|Object

Last updated