Input DropDown

Hi.

Sure. What you will need to do is store all the items from the drop down to a list or array variable, then match up the item that contains your string. Then, use the matched item in your Select Item activity to actually choose it.

See if you can find some info on doing this here:

To be simple you will do this:

  1. Assign items to array variable
  2. Select Item activity with:
        variable.Where(Function(x) x.ToString.Contains("USA"))(0)

Regards.

3 Likes