Hello,
Sure, I'll explain. Add this action as the first action to your flow "Totalizer Login":
WAIT (System.WaitForProcess.ProcessToStart ProcessName: $'''PING''')
Then run the flow. Flow will not complete, it will wait instead.
Next, use command prompt to complete the flow, open command prompt and type (you could also run this from a .bat file):
ping localhost -n 1 > NUL
Your flow will now complete.
You can improve this solution by adding an infinite loop to the flow (see my example link).