utils
Provides miscellaneous utility methods.
decrypt
Decrypt text
** Usage example:**
Parameters:
text
String
Text
Returns:
Object
- DecryptResult Object with getDecryptResult method
dnsResolve
Uses the DNS protocol to resolve a host name
Parameters:
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:**
Parameters:
text
String
Text
Returns:
String
- Encrypted text
pause
Pause test execution for the given amount of milliseconds.
Parameters:
ms
Number
Milliseconds to pause the execution for.
readCsv
Reads data from csv file
Parameters:
filePath
String
Absolute path to file
options
Object
readXlsx
Reads data from Xlsx file
Parameters:
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:
name
String
The transaction name.
writeCsv
Writes data into csv file
Parameters:
filePath
String
Absolute path to file
data
Array
CSV data in format [{column_name_1: 'foo', column_name_2: 'bar'}]
options
Object
xmlToJson
Parse XML data to JS object
Parameters:
xmlDataStr
string
|Buffer
Like
options
boolean
|Object
Last updated