Nexial Automation

Test Automation Platform for everyone!

X

nexial-core 3.4 (2020-10-12)

Release 3.4

2020-10-12

General

Fixes

  • fixed runtime error when checking for Nexial Installer and Nexial version.
  • fixed issue for windows while executing script/plan when USER_HOME has spaces.
  • fixed the issue where an expression is sometimes evaluated twice.
  • forcefully failed script where leading/trailing non-printable characters in Activity name is found; necessary since such cases would likely cause execution failures.

Improvements

  • bin/nexial-artifact-repair enhanced to retain specific data format (date format, background, and border colors mainly).
  • bin/nexial-script-update enhanced to automatically trim any leading/trailing whitespaces from scenario or activity name to avoid execution-time errors.
  • updated to Spring 2.3.4, Kotlin 1.4.10.
  • updated code to eliminate JVM warning on “illegal reflective access”.

System Variable

  • nexial.mailSubject.withSynopsis: NEW System variable to support the inclusion of a “PASS” or “FAIL” postfix at the end of an execution notification email.

Nexial Interactive

Expression

  • BINARY: NEW expression to support binary data type.
    • support the loading of binary data from an external file.
    • previous [encodeBase64] has been renamed as base64encode for consistency.
  • SQL => cell(resultName,row,column): NEW operation to retrieve a specific column of a specific row from a specific query result (referenced by name). Depending on the underlying data type, the resulting expression could be a NUMBER, BINARY, or TEXT expression.
  • SQL: added support for binary or byte-array data type.
  • TEXT => binary: NEW operation to convert text into its binary form.
  • TEXT => removeLeft(length): NEW operation to remove characters off the current text from the left (i.e. beginning).
  • TEXT => removeRight(length): NEW operation to remove characters off the current text from the right (i.e. end).
  • LIST => saveItems(indexAndVar): NEW operation to save one or more items from a LIST as individual data variables.

base commands

external commands

  • nexial.external.workingDirectory: supports the use of a “working directory” when running an external program. This will affect the starting directory of an external program.
  • openFile(filePath): NEW command used to open any type of file like pdf, excel, txt, png, etc.

image commands

io commands

localdb commands

  • support binary or byte-array data types. Query result set that is of type BINARY or ARRAY will be maintained as such. One can use the BINARY expression to save binary or byte array data to a file.

mail commands

  • compose(var,config,value): NEW command to allow for flexibility in sending SMTP email. Currently, this command supports the adding of recipients in the TO, CC, and BCC list, the adding of attachments, and the HTML content.
  • clearComposed(var): NEW command to clear any previously configured email composition.
  • sendComposed(profile,var): NEW command to send a composed email.

rdbms commands

  • support binary or byte-array data types. Query result set that is of type BINARY or ARRAY will be maintained as such. One can use the BINARY expression or SQL >> cell(resultname,row,column) save(file) expression to save binary or byte array data to a file.

web commands