1. Defining Input Variables

String values:

If the input value or test data is a string, define the dynamic_input within quotes in the code.

Example

  1. JavaScript: var inputPath = "dynamic_input"; // User input

  2. Python: value = os.environ.get('dynamic_input')

Numeric or floating-point values:

If the input value or test data is numeric or floating-point, define dynamic_input directly without quotes.

Example:

  1. JavaScript: Var inputValue = dynamic_input;

  2. Python: Input= dynamic_input

Last updated

Was this helpful?