Hello,
I have three test cases that create a user, edit user and delete user in our application we’re developing. I’m mostly using script mode because it’s easier but I have an issue: I created a test suite that executes all three test cases, one after another. I declared a string variable in first test case, eg.
String username = ‘testUser’ + rndTimeStamp;
I want to use that variable in all three test cases when I run the test suite. How could I do this?