How to select multiple item from drop down

Hello

I have to select multiple items one by one from drop how can I do that which names I have to select those are store in config file total 8 items I have to select but one by one.

I have tried multiple ways but not able to get that single item.

Thanks

1 Like

Hi @suraj_gaikwad

Use Select Item activity

image

1 Like

Hi @suraj_gaikwad

Try by using click and Find children activity.

Hope it helps!!

1 Like

@lrtetala I used I have to select single item one by one

Hi @suraj_gaikwad

Add the 8 items into any array
for each item in array:
use select item (item)

1 Like

Did you try Select Multiple Items?

Activities - Select Multiple Items - https://docs.uipath.com/

@suraj_gaikwad

Use For each in that use Select Item activity

1 Like

Product name is the variable where I stored all values which I want and I passed this variable in click activity also but it’s not working

@pravallikapaluri @lrtetala @supriya117 @pravallikapaluri

Thanks

@suraj_gaikwad

In the select item activity you can pass that variable

1 Like

@suraj_gaikwad

Was the select activity successful in choosing the element?
If it’s work then follow this process:

for each item in array:
          use select item (item)
1 Like

If I passed the variable in select items it’s need to be indicate the elements?

@efelantti @supriya117 @pravallikapaluri

Thanks

@suraj_gaikwad

It’s select the item that you have passed in the drop down.
Just select any random item and pass the variable in the strict selector of select item activity. Then it selects the item dynamically.

1 Like

It’s not selecting the element

@suraj_gaikwad

Just select any random item and pass the variable in the strict selector(aaname or innertext) of select item activity. Then it selects the item dynamically.

1 Like

Test if you are able to select an element statically. Don’t use any variables, just choose any element from the list. If it’s not working, then probably the Select Item activity does not work with the control and you need to work around it with for example Click.

1 Like

Yes I’m not able to select by using select item, what should I do for this scenario

@supriya117 @efelantti

Then you can try to type the item to the filter and choose it by clicking.

1 Like

Use click activity in place of select item activity.

1 Like

This is selectors which I indicated on drop down single element and I’m passing the variable to a aaname which I have store all elements names

Still I’m stuck here I tried multiple ways even I tried with select item for single single element it’s not getting select

@lrtetala @supriya117 @pravallikapaluri @efelantti

Thanks