This question is regarding to find out recommended way of implementing “Use application/Browser” activity for web app. I am new to UiPath, so this might me very basic question.
For each web page like login and home screen, do I need to use separate use application/browser instance ? or I can put entire flow in one activity
As long as it’s all happening inside one browser window, and things aren’t opening in new tabs/windows, you just use one Use Application/Browser and put all your login steps into it.
Typically I do the login with one Use Application/Browser, and output the browser UI object as a variable. Then I use the variable as inputs to other Use Application/Browser activities in other parts of the automation. For example, I attempt login before getting an item from the queue. That way if the login fails I haven’t affected any queue items yet. Keep in mind if you’re passing from one Use Application/Browser to another, you need to set them NOT to close the browser.
Also, I suggest doing the free training on the UiPath Academy web site.