Re: [Selenium-users] passing a variable between scripts in a suite

2005-11-14 Thread Peter Bernier
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

[Selenium-users] passing a variable between scripts in a suite

2005-11-14 Thread Ken Mizell
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