so with my current automation I want to select a make from the dropdown but only way for the dropdown to appear is to type a letter into the textbox, I have already catered for that. However I am struggling to select the make from the drop down. Find childrens does not seem to work because it does not return any elements.
Note: that the drop down is dynamic so has I keep typing in letters the items in combo box gets lesser.
Did you tried by using select item activity. if it wont work
after typing use click activity and indicate the result after completing your typing. i hope already you have handy the item what you are going to select use that variable in selector
Hey @Aki1111 have you tried for each ui element activity. or store that value in variable and pass that variable in the selector of select item activity.
cheers
To select an item from a dynamic dropdown where the list changes as you type, first use Type Into to type a letter into the textbox, triggering the dropdown. Then, wait for the dropdown to appear using Wait for Element. Since the dropdown is dynamic and changes with each keystroke, use Find Children to retrieve the current list of items. Loop through the children elements, and if an item’s text matches the desired make, use Click to select it. Ensure that your selector is flexible and can adapt to the changing list.