How to switch tabs in firefox?

I am unable to switch between tabs within firefox. I made a macro where after it has run it’s course, i want it to switch to the next tab and repeat itself. I have tried the following:

“Command”: “XType”,
“Target”: “${KEY_CTRL+KEY_TAB}”,
“Value”: “”

You must use selectwindow to obtain the focus and switch in tab.

Your solution do not active the focus in switched tab and do not work because ui vision continue to work in original tab, you must swith tab with selectwindow.

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

1 Like

Thank you so much for the solution!

1 Like