help please, I’m having a problem that after automating the login I am directed to another page that has to put another login so that UiPath is not recognizing this other page in the browser how do I make it recognize this other page?
Welcome to the community
If its a different kind of window…try using another use application/browser scope
Cheers
Thank you very much, it worked
1 Like
Please try this-
- Wrap your automation sequence within an “Attach Browser” activity. This activity allows UiPath to target a specific browser window and ensures that subsequent activities are performed within that specific browser instance.
- Indicate the elements on the new page: If UiPath is not recognizing elements on the new page, you may need to re-indicate those elements using the appropriate activities (e.g., “Click,” “Type Into,” etc.). Use the UI Explorer to indicate the elements on the page and update your automation accordingly.
Thanks!!