This is a common issue when automations behave differently between attended and unattended (Orchestrator) runs—especially with system dialogs like the Edge download prompt.
Here are a few suggestions that might help:
- Use “Send Hotkey” Activities: Since the Edge download dialog is part of the browser’s native UI, selectors may not always be reliable. Try using
Send Hotkey(e.g.,Ctrl + Jto open the Downloads page orTab + Enterto navigate and confirm the download). - Simulate UI with Image or Keyboard-Based Automation: Consider using image-based automation (like
Click Image) orType Intowith simulated keys. This bypasses selector issues altogether. - Check Orchestrator Robot Settings: Ensure the robot runs in interactive mode with a properly loaded user session (resolution and login settings). Sometimes selectors fail if the screen isn’t fully loaded or visible during execution.
- Add a Delay or Retry Scope: The dialog might not appear instantly. Wrap your action in a
Retry Scopewith a small delay to wait for the download dialog to become available. - Switch to Modern Design Experience: If you’re still using classic activities, switching to the modern experience can offer more resilient UI interaction methods.
If possible, share the selector or a screenshot for more targeted help.
Hope this helps!