As you can see in the screenshot, there are 11 pane items in the Group Frame3 17. Each of those pane items has the same identifier so when I try to select them it will select the whole Group Frame3 17. For, now what I have done is use the Get Image to select the first pane item. Is it possible to choose the first pane item without the Get Image?
Yeah, try reading this.
Remember you should only use index in parent on the last “element” in the selector
If you have a Selector that is valid for multiple elements then you can set the Max Results of the get Element activity to something higher and get yourself the list of returned elements. In your case this would contain all the panes if the selector is correct.
You can now select any element in that list by using elements(n) so elements(0) if you want the one found first. If you always want the first found element then you can just leave the max results on 1 and always get the first element found as result.
1 Like
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.