I have a list of items like in the attached image. I want to click on an item of type W15.
My idea is to datascrap the list and click the item of W15 using dynamic selector.
but the not possible to give dynamic values for selectors since idx value is same for all items in the list (refer below selector)
<html title='ACME System 1 - Work Items' />
<webctrl css-selector='body>div>div>div>table>tbody>tr>td>a>button' idx='1' tableRow='4' tag='BUTTON' />
please advice me on this.
ddpadil
(Dilip)
2
Hello there,
There is no need of using click activity and the selector.
- After data scraping you need to extract W15 workItem of the status open which can be done as below
- DataTable.Select(“Type=‘WI5’ AND Status='Open”')
- Then loop through the data row to get each workItem
- To click or open the WI5 You just need to use Navigate To activity and pass the URL as
- system1url+“workitem”
Please refer the walk through document for the same.
Calculate_Client_Security_Hash_Walkthrough.pdf (944.8 KB)
Cheers 
2 Likes
mozahra
(Mo)
4
@ddpadil Hello,
Where i can find more walkthrough documents like this
thanks
Sugumar8785
(Sugumar Ramachandran)
5
Has this worked? If yes, can you tell me how did you do this.
Yes @Sugumar8785, try @ddpadil 's workout