I’m having issues reading some values from a dropdown.
I tried get text UiAutomation and classic Automation Activities but output was null or wrong. I also tried find children elements but it is not working. And with CV I’m unable to correctly identify the object so it fails as well.
You wouldn’t use CV, that’s for things like Citrix/RDP where you can’t get regular selectors.
Did you set it to FIND_DESCENDANTS? It’s not the default so you have to set it manually. Indicate the pulldown as the primary element. For a web page you’d use a filter of <webctrl tag='OPTION' /> to get the options from the pulldown but since this is an app, you’ll have to explore in UI Explorer to see what “tag” it’s using for them.
So it seems the application dropdown is not set in a standard way since the option values are nowhere to be found (as dropdown child elements) in the UI explorer
Hi @naveen.s , the issue is not selecting the item, the issue is I need to read all dropdown option values to know which one to select. The values are dynamic and will always be different, the values are also composed by date+description, RPA knows the date but not the description and since same date can appear multiple times I need to read all option values