Unable to select item from dropdown from ALM

Hello,

I need to select item from Domain and project dropdown (please check images) but UiPath select item activity now allowing me to select that dropbox please check image.
what is the another way i can select specific item from dropdown.
item need to select is there in variable.
help me to solve this issue.



Hi @Mathkar_kunal

If the select item activity not works.
→ Store the Option that you want to select from the dropdown store in a variable called DomainName.

- Assign -> DomainName = "FR_ADM"

→ Use click activity and indicate on the dropdown to drop all the options in the dropdown.
→ Then use for each Ui element activity and indicate anyone of the dropdown option, it automatically extracts all the options.
→ After indication come back to studio and click on configure filter and select the equal operator and pass the DomainName variable as below,
image
→ The Output of For each Ui element activity is CurrentElement.
→ Inside For each ui element activity insert the click activity and pass the CurrentElement to the Input Element field in the properties of click activity.

Do the same for Project selection.

Hope it helps!!

hi @Mathkar_kunal
Use “Find Children Activity” to get all items in the dropdown.
Iterate through the resulting collection to find the item you need.
Use the Click activity to select the desired item.

Hope it helps.