The scenario is something like this, I need to open a website, perform some operations there then open an other website in another tab and perform some operations there…
So how I can open two tabs in the same chrome window without closing the other one and also navigate between them back and forth
Use the “Open Browser” activity to open the first website.
Perform your operations on the first website using other activities inside the “Open Browser” scope.
Use the “Open Browser” activity again, this time to open the second website. Set the NewSession property to False. This will open the website in a new tab of the same Chrome window.
Use the “Attach Browser” activity to indicate and attach to the first website’s tab. You can use this activity to perform further operations on the first website.
Use the “Attach Browser” activity again, this time to indicate and attach to the second website’s tab. You can use this activity to perform operations on the second website.
To navigate back and forth between the tabs, you can use the “Navigate Back” and “Navigate Forward” activities inside the “Attach Browser” scopes.
Use the another Use application\browser activity and indicate the redirected page.
Change the Properties of Use application\browser activity.
Close → Always
Open → If Not Open
Window Attach mode → Single window
This single window option will help to open the redirect webpage in the other tab in same window.
Insert the activities to do the automation in redirected webpage.
I have already done this its working, try this method