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
JavaScript: var inputPath = "dynamic_input"; // User input
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:
JavaScript: Var inputValue = dynamic_input;
Python: Input= dynamic_input
Last updated
Was this helpful?