Extract drop down entries

Hi @shaik_roshan

Welcome to UiPath,

Use the Click activity to open the dropdown menu.
Utilize the Find Children activity to locate all items within the dropdown, setting the Filter property to target the dropdown items with an appropriate selector.
Implement a For Each activity to iterate through the found items.
Inside the loop, use the Get Attribute activity to extract the text of each item, setting the Attribute property to “innerText” or “text”.
Store the extracted values in a list or variable for further processing.
Finally, use a Message Box or Write Line activity to display the extracted values.

If you found helpful, feel free to tick as a solution.
Happy Automation