Processing Work Items based on List of

Hello Community,

I have a requirement similar to given screenshot.

Lets say , we need to mark 3 WIID ( 772641, 216621, 871284) as closed in the portal based on inputs provided from another workflow.

1 . All Entries are successfully extracted in the DataTable , and we can see that the required WIIDs are present in the List and are in open Status

  1. How will we go back to the portal, open the three WIID one by one , and close them,

Once I am able to click on the Correct WIID, I can create the remaining work Flow, but how will we select and click based on external list ?

Hi @iVaibhav

Please find the following activity which you can implement while clicking particular WIID, Please note you need to build a logic to iterate through each navigation pages in the work item table from acme website and use the following activities

image
Use get Attribute activity to get the table row of the particular WIID, which gives O/P variable name say- getAttributeTableRowValue with the selector <html app='chrome.exe' title='ACME System 1 - Work tems' /> <webctrl tag='TABLE' /><webctrl tag='TD' aaname='56164540' colName='WIID' />

Then use click acitivity with the above table row with the following selector

image
This activity with the selector <html app='chrome.exe' title='ACME System 1 - Work Items' /><webctrl tag='BUTTON' colName='Actions' tableCol='1' tableRow='"+getAttributeTableRowValue.ToString+"' />

Thanks

2 Likes

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