Hello guys, I am trying to automate a browser flow where I use the “Attach Browser” utility for the “Retail Home” tab, this tab after a few steps opens a second one called “Launcher”, however I need to interact in both tabs within the same flow and I don’t want to repeatedly use the “Attach Browser” activity, so I tried to use a selector with Regex in the following ways:
<html app='chrome.exe' title='.*(Retail|Launcher)' matching:title='regex' />
<html app='chrome.exe' title='.*(Retail|Launcher)'.* matching:title='regex' />
<html app='chrome.exe' title='.*(Retail.*|Launcher)' matching:title='regex' />
<html app='chrome.exe' title='.*(Retail.*|.*Launcher.*)' matching:title='regex' />
<html app='chrome.exe' title='.*(Retail.*|.*Launcher.*).*' matching:title='regex' />
<html app='chrome.exe' title='.*(.*Retail.*|.*Launcher.*).*' matching:title='regex' />
And neither option seems to work, ideas or any solution to iterate between the 2 tabs with a dynamic selector?
Remember that when using “Attach Browser” the selector or title of the application is automatically placed in the activities within the Attach so the header or selector of the application is modified within “Attach Browser”
Thanks in advance!