Hi…
I need help regarding how to use same browser when transition between different sequences. Currently each sequence always open new browser.
For example :
on first sequence, I need open browser, log in and go to home page.
on second sequence I want to continue to navigate to other pages.
I combine these 2 sequences into Main file, but each of sequence always open new browser.
I need sample file how to solve my issue.
Do you use modern activities? If so, verify what option you use in the “Open” property of “Use application/browser” activity. Seems like it might be set to “Always”.
Did you try passing the UiBrowser variable between the flows? Once you open the browser, you can specify the output element in the property of that open browser. This variable can be passed across the workflows/sequences & it can be given as an input instance for any other attached browser. It will start utilizing the indicated instance, instead of opening the new one.
I took one browser variable as output and passed it through an argument to the following sequence. There I used the same browser to do the next activity.