How do you handle logging in to applications during a running process?

What activities do you use?
I sually use check app states or delays

Is there any other more robust way to ensure a citizen can safely log into an application during the execution so the robot can carry on?

Hi @adext01

  1. Using Element Exists or Image Exists to wait for a specific element after login.
  2. Using Wait Element Vanish or Wait Image Vanish if the login screen disappears.
  3. Using On Element Appear / On Element Vanish to react to UI changes.
  4. Wrapping the login check in a Retry Scope until a success condition is met.
  5. Using Get Text or OCR to confirm login messages.
  6. Calling an API or other automation hook if the app supports it.

A combination of Retry Scope + Element Exists is usually the most reliable.

Hi @adext01

You can follow this practice to login into any application

1 Open application
2 Check App State → Login screen ready
3 Enter credentials
4 Retry Scope → Click Login
5 Element Exists → Validate dashboard
6 Try-Catch → Handle failures
7 Continue only after successful login

If solution work for you please mark as solution or let me know if you have any doubts
Happy to help
Cheers