1. Lets one create a test case with string variable named “TestVar”. And lets print this variable during execution
2. Lets create a test suite with this test case 2 times.
3. Lets open a variables binding window and initialize this variable. In first call let it be “FirstValue”, in the second call - “SecondValue”
4. Execute a test Suite.
Expected behaviour: There are 2 print results in console:
FirstValue
SecondValue
Actual behaviour: There are 2 same results in console:
FirstValue
FirstValue
How am I supposed to initialize test case variables with different values?