Hacer clic en cada opcion de un desplegable

Buenos días, tengo una consulta, en una web, tengo un desplegable, que sus opciones dentro son dinámicas dependiendo de pasos anteriores, lo que debo lograr es, hacer clic en cada una de las opciones de ese desplegable y descargar ese documento, tengo que usar actividades para lograr hacer clic en cada uno de ellos sin saber la cantidad de opciones que tengo allí dentro, he probado con find children, for each, etc pero no logro que funcione, muchas gracias

Hi @Maria_Victoria

I suggest to use the For each UI element activity.

Check the below steps for better understanding,
→ Use Click activity to click on the Dropdown to show the options.
→ Then use the For each UI element activity and indicate the options in the dropdown. Output is CurrentElement.
→ Inside For each UI element activity insert the click activity and pass the CurrentElement to the Input Element property.

Then it will click one by one option in the dropdown.

Hope it helps!!

Hi! thank u, when I try to add the UI element it returns an Error message that says Target application could not be identified. Open it and indicate the correct status before indicating/editing the destinations that belong to it.
I have the website open and even if I select the drop-down menu I still get the same error message

Have you used Use application/browser activity… @Maria_Victoria

yes, this is the error

Okay @Maria_Victoria

This UI is not allowing to use the For each Ui element. Use one click activity and indicate the first element in the drop-down and check the selectors weather it contains any row number or count. Then you can increment the number to click on the next element.

Hope you understand!!