...
- Qualitia validates expression entered by the user and checks if the expression is empty or contains assignment (for example, if user entered a=b which is invalid). Expressions should not have assignment, users should use "==" operator instead. Hence {a}={b} is invalid expression.
- Rest of the syntax and semantics is checked during the actual execution of test case.
- You must enclose stored variables, environment variables in curly braces (for eg: {a}=={b}, or {($$_Status}==0.
- Consider the following test case level conditional block:
- OpenUrl
- IF {$$_Status}==0
Task1
Task2 - ELSE IF {$$_Status}==1
Task3 - ELSE
Task4 - END IF
...