Select Multiple items on scrollable List Using CV activities

Hi All , can anyone support in selecting multiple items on List which has more items but only first 3 items are visible .. i have to scroll down then select 1st Item , then scroll till i reached 2nd item , hold ctrl then select the 2nd item
my solution is using CV Type into , but it’s working to select only one item not multiple

please note i’m working on Remote Session Desktop on Citrix Application

Create a variable ItemsFound as boolean and default False

  • Do While with condition NOT ItemsFound
    • Use Check App State to look for the value you want to select
    • If it is found, CTRL+Click it
    • If it is not found, click the down button
  • Once all items are found and clicked, set ItemsFound to true

You may also want to set up a counter and use it in the Do While condition to avoid endless loops.

Check App State doesn’t work; it gets Remote Communication error so i have to use the Computer vision Activities
what is your suggestions to do it ?
or any workaround

@Mohamed_Reda

For citrix you can install the extension then all the normal ui activities would work

Also using cv click as well you can use the property key modifier to select ctrl in it and then click that way previous selection is preserved

cheers

1 Like