When starting testing in multiple suites after signing in, I find that my current setup function to instruct the remote to sign in is not very efficient.
I am looking to create a helper function that signs in before running each test and can be easily reused across different suites. In a Python Selenium framework, decorators were used for this purpose.
Do I need to create a function and wrap everything inside a registerSuite with that function?
Your guidance on this matter would be greatly appreciated,
Gregg