I have to work on a process automation using Modern StudioX and below is the process to automate:
Open a drop down with patients profile: for 1st Value in drop down by default Process in current tab
when user clicks on next values in drop down, a new browser tab opens and user has to repeat same process which is done for 1st patient in subsequent tab until all the values in drop down completes.
Use the “Open Browser” activity to open the web application where the drop-down with patient profiles is located.
Use the “Click” activity to click on the drop-down and open the list of patient profiles.
Use the “Get Full Text” or “Get Text” activity to extract the list of patient profiles from the drop-down.
Use the “For Each” activity to loop through each patient profile in the extracted list.
Inside the “For Each” loop, use the “Click” activity to select each patient profile one by one from the drop-down.
Use the “If” activity to check if it is the first patient profile (using a counter variable or a flag). If it is the first patient, use the “Type Into” activity to process the patient in the current tab.
If it is not the first patient profile, use the “Send Hotkey” activity to open a new browser tab (e.g., press “Ctrl + T” to open a new tab).
Use the “Type Into” activity to navigate to the URL of the patient profile in the new tab.
Repeat the necessary actions for each patient profile in subsequent tabs as required.
Continue the “For Each” loop until all patient profiles in the drop-down have been processed.
Use the “Close Tab” activity or “Send Hotkey” activity (e.g., “Ctrl + W”) to close the current tab.
Continue the loop to process the next patient profile in the original tab.
After the loop completes, use the “Close Tab” activity to close the original tab.
The automation will end after all patient profiles have been processed.
I have tried using Keyboard shortcut key (ctrl+tab) so many times but after executing this activity, it again redirected me to original tab and the activity I want to perform on another tab couldn’t be found
Scenario is if I click on a link in original tab, link opens in a new tab and then I have to perform action on new tab, after completion of a process user should come back to original tab.
Steps I have used are following:
Used use application/browser activity and added my URL
Click activity to click on link
Keyboard shortcut key to go to next tab
Type into activity to be used in new browser tab
After executing 3rd step it takes me to next tab but before executing 4th it again redirect me to original tab and not able to perform step.
Hi,
I understood your requirement. I think you can try step:
use application/browser to open your URL
2.use get text activity to get new link
3.use hot key ctrl+t to open new tab
4.type into link to new tab
Hope it help,
LNV