Issues with counting from a drop-down list

Hi again @rayabhijit2017,

I am assuming this is similar to the issue posted in this thread: How to initialize UiPath.Core.UiElement - Build / Studio - UiPath Community Forum

Approach:

  1. Get all the Dropdown items and save them in a List
  2. Use the List to iterate through
  3. Modify a Dynamic Selector for Model Series (Category and Manufacturer will have its own)
  4. Send Hotkey and Click activities (use Dynamic selector from 3).

As you pointed out in the other post. That drop down does not allow Select Item so I use the Hotkey as you did and combine it with Dynamic Selectors to click on each dropdown option.

The trick here is the selector. To make the workflow even more robust you can add an element exists and check if the value is similar to the ListOfDropdowns(Index)

You can also use the same method to the other two dropdowns. Here is a way to get what you want (I use Edge browser, change it to Chrome): IEnumerableUiElement.xaml (22.8 KB)

Hope this helps!

1 Like