Question
5
Replies
1199
Views
KPMG LLP
Posted: March 21, 2018
Last activity: December 8, 2018
Closed
How to interrogate and loop through a dynamic area
Hello Team
I am wondering how to interogate and loop through each thumbnail (a perform click on each thumbnail) a section of a website which pops up thumbnails of a PDF document.
The closest example i can find online as an example is the recent documents section in google docs shown below in my attachment
***Edited by Moderator Marissa to update categories***
Each control has a property called UseKeys which allows you to match against multiple targets. Assuming you can adjust the match rules to match all of the targets you are interested in, then you can use the following method.
When you have a control where UseKeys is enabled, you can call the GetClones method of the control and pass that result to a ListLoop. From a ListLoop, you can extract a proxy from the Item which will represent one instance of that specific control. From here, you could call the PerformClick (or whatever method or steps you need to call) on the specific clone.