How to passing value variable from Verification to Variables

You will have to store your Variables content to disk as you cannot write back/save the passing value variable to Variables. Variables are only valid while the Test Case is running and you can only read them into your Test Case. You cannot write them back to the same location. You can change the contents of the variable within your Test Case but the change is only valid while the Test Case is running. The change is lost when the Test Case is finished (unless saved to disk).

Note: Global Variables are similar and are only valid while a Test Case/Test Suite is running. You can read them in and change them while your Test Case, or Test Suite, is running, but you cannot write them back to their original location.

If you want to Save the variables content, you have to write the value to spreadsheet or file and then read the value from spreadsheet or file in the next Test Case, or Test Suite.

1 Like