Is there a way to switch between tabs while running tabs loop

Hello,

I am doing a loop for several tabs while uploading a file that take time for each tab .
I don’t know how to get back to the first tab and complete process while others load the file .and then the second tab …and so on…

I want to launch upload in all tabs via loops then finish the process for each one.

Any help would be much appreciated

I don’t know how to get back to the first tab

If you (= UI.Vision RPA) opened all the tabs, then the most leftmost has the number 0. So this will switch back:

selectWindow | tab=0

If I add a command selectWindow | tab=0 it will be added to the loop and mess all.

So I need the tabs loop to be done and after it I can go back and finish the process for each tab.

I never use selectWindow | tab=0 because this command usually not detect correct tabs.

I prefer an anternative working command that select the tab that always works.

selectWindow | title=TITLE TAB

In title you can add a partial title and continue to work example goog (for google) and continue to detect the tab.

Title detect always correct tab and choice the first tab from left.

With this command you can select every tab.

https://ui.vision/rpa/docs/selenium-ide/selectwindow

Partial does not work, and is a problem for many (many) pages that have dynamic title elements.