How to select below attached list in uipath?

image
How to Select all city in attached box in web using uipath

Hi @SURESH_P

You can try with Get attributes activity it will get all the data in the drop down.

Regards
Gokul

Hi Gokul,

Thanks for your quick response!

I tried with Multiple selection, also input given as attached format

Can you please confirm is this correct way

image

Hello @SURESH_P

You need to use the select multiple item actvity. What you have given in the expresssion is correct.

image

Thanks

Hi @SURESH_P

This is in the Array string format.

If you need to print first value in the array use this expression.

Arrstring = {“Bangalore “,”Chennai”,”Coimbatore “}

If you print Arrstring(0) it will give the result as Bangalore

Arrstring(1) - Chennai

Arrstring(2) - Coimbatore

If you need to print all the value in the array try with this expression

String.join(“,”, Arrstring)

Regards
Gokul

Thank you It’s Working Fine…

and I have one more doubt how to add get attribute value in array?

Check out this thread

For another issue you can create a nee topic. Kindly close this topic by mark as solved. It will help for other too.

@SURESH_P

Regards
Gokul

Will Try, Thanks for your response…!