How to click on specific work items using loop?

Filter data in excel with Type = WI1 and open each work item for WI1 I page 1 using loop
*


Need to click on this search option but it is not taking suggest a next step after doing filteration of data what should I take?

@tanya.ojha

Please use for each ui element it has inbuilt filter as well

To get data use extract table data

And then add column to datatable and update datatable and then write to excel

Cheers

Thanks for the reply I have done that but after I have to click on specific for updating that I am not able to do


I need to click on search symbol so how to add that in flow so it can click on search symbol as that is not visible on excel sheet so it is not taking

@tanya.ojha

are you using for each ui element? for each ui element has nothing to do with excel

now coming to identifying ..you need to indicate full row in for eahc ui element..inside the loop use find children to get the search icon selector and use the output to click on the search icon

also using another find children you can also get other column values

cheers

cheers

Dear @tanya.ojha,

You can use below steps to done the work.

  1. Use For each element activity with filter to identify WI1 items.

  1. Add filter in for each element activity:

3: Use click activity to click on search icon. Use item type as anchor in the activity as follows:

Mark as solution, if it solves your issue :slight_smile:

Br,
NikZ

Use Find Element or Element Exists with a dynamic selector that contains the current WIID to find the correct row.
Example: Use a selector like "<webctrl aaname='"+currentWIID+"' tag='TD' />".