Hi everyone! I’m fairly new to UiPath and have been running into lots of problems in developing an automation for my use case. My use case is as follows:
I’m using a Select Multiple Items activity and pointing it to a list on a webpage. Once I do that I want to be able to get the items in that list as a variable and then use that list to perform a browser search “Ctrl+F” and inside the browser search I want the names that are from that list.
Step 1: Select Multiple Items
SelectMultipleItems
Step 2: Get Selected Items
GetSelectedItems
Step 3: Iterate through the items and perform browser search
ForEachRow in selectedItemsDataTable
in Body
Step 4: Simulate pressing
TypeInto Text=“[k(ctrl)]f[k(ctrl)]”
Step 5: Type each item into the browser search
TypeInto Text=“[CurrentRow(“ColumnName”).ToString]”
SendHotkey Key=“[k(enter)]”
The values are a list of texts, I can see what values I get in the activity’s property editor but I don’t know how to pass them forward. In the image below you can see that I get String from the activity, but how can I access this value in the next activity.
This operation helps you select 1 item from a list of items, for example, with a dropdown list with several values, it will select 1 value in that list.
For example, here I have a dropdown list that selects a date value, I created a dynamic variable value before
In this activity, I only intend for it to choose that way
Other sample