Select time from dropdown menu (scrolling down)

Hello,

I want to select a time from a dropdown menu (see screenshot), also times that are not visible at the moment. I tried it with a Try Catch activity and Exception, which did not work. There should be an additional scroll activity. Does anyone have an idea how to solve this?

Thanks in advance

Hi @Tris_H,

Have you tried ‘focus’ and ‘hover’ activity?

Regards,
MY

1 Like

Hello @Tris_H

You can do it as combination of element exists activity and a loop. 2 element exist is required.

Maybe you can try with while loop.

element exists on that date (this you need to make dynamic)
while(elementVisible=“False”)
{
Mouse scroll or send hotkeys( downarrow you can try)
Element exist on the date
}
Click activity

1 Like

Thank you very much! I tried in the end with Send Hotkey + pgdn.

Have a nice day!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.