I am working on IE in which i have to select multiple rows as you can see in image manually we can select with Ctrl+click(I have to press ctrl and click on multiple file which i want to select).
what will be next action after you do ctrl+click manually?
suppose its just downloads a file means you can scrape data to Datatable and loop through, if you want in real time ctrl+click means use the right_click property in click activity and choose open in new tab/window
I had a similar scenario,
On web application table, click on one colum item’s link goto that page, update and save, → repeat for all.
What we did was we scrapped the data, so the link was dynamic, found the dynamic selector, click on that item, update and click back button…
We kept, click->update->cllick back button inside the loop
See Parallel Activity might help, such as multi-thread, or Data Scrap the table and try to get all the file url/name by the column File and download using http request
@malam9384 - ideally, it should work with Key Modifier but if it not working for any reason I would suggest alternative approach :
Approach 1 :
a. Just check if the control has any attribute like “Selected Items” or similar which holds all the selected value.
b. If yes then use this attribute and try using Set Web Attribute activity.
Approach 2 :
a. try and find out the attribute which differentiate between selected and non selected items.
b. use find children activity and loop through all the rows and set the attribute (of step a) value to selected value.