Hi Nelson (Thought I'd address you as you're familiar with the issue...;-))
Ta,
As you recall, I'm calling helper methods from another Class the resides in another file from my [Test] and that's working well.
The thing is, I don't want to create a large number of objects each for each test as I'm doing now (See below)...
Placing the new object statements under the class (Meaning outside the [Test]) does not work either...Any ideas ?
| [Test] |
| public void test_01() |
| { |
| Users Users = new Users(Manager); |
| Navigate Navigate = new Navigate(Manager); |
| Generic Generic = new Generic(Manager); |
| Register_App Register_App = new Register_App(Manager); |
| //-------------- |
| Navigate.Navigate_Basic_LogIn("tester38"); |
| } |
Ta,
SD.