If the input value or test data is a string, define the dynamic_input within quotes in the code.
JavaScript: var inputPath = "dynamic_input"; // User input
Python: value = os.environ.get('dynamic_input')
If the input value or test data is numeric or floating-point, define dynamic_input directly without quotes.
JavaScript: Var inputValue = dynamic_input;
Python: Input= dynamic_input
Last updated 4 months ago
Was this helpful?