Description
Current UI login implementation authenticates at function scope, meaning login will run before every test. This can be expensive and isn't scalable.
Solution
- Login once at session/module scope
- Save browser state (cookies, storage)
- Reuse state in subsequent tests
Description
Current UI login implementation authenticates at
functionscope, meaning login will run before every test. This can be expensive and isn't scalable.Solution