I need to click on each Account ID shown in below image and perform some action. There is almost 40 (not Fixed) Account id is there for that i need to use Scroll down also. It’s in Citrix.
Could any one please suggest the solution.
Hi @keshav Build dynamic selector for to click (like in sellector section if you have any property that contains account id then you can build dynamic selector and then you can use it )
@keshav, Please take selector for entire table (or table frame).
This will be generic selector with fixed frame elements. Make sure you check these selector couple of times and it should not change. Pass that selector into getText activity.
That will return you full text value for the table. Once you get text output then pass that text output string value into Split Activity (take a common fixed value for each row as split condition).
This split activity will give an out put value.
MaxCount = UBound(SplitOutPut) → this will give you total count of the rows.
use do while loop till this MaxCount.
Surface Automation (Citrix) has very limited options. you have to depend only on available screen scrapped data. Try to use Computer Vision activities…
also observe data format… if data format is unique then that would be your key to make string manipulations.