Hi Ken,
You may want to consider refactoring your tests to run in a single
script. (Or have two scripts, but copy the first one into the second).
It's generally good unit-testing practice to have all setup/teardown
operations done (or at least called) within each individual script.
The reason f
Hi,
I need to use a variable for username since each time i run my tests i need to create a new (unique) user ID. In my suite i have three tests:
Create Account
Login
logout
in "Create Account" I create a variable called username and store the name for this run in it
storefred1UserName
then