Okay I’ve been banging my head off a wall with this one all night. I’m trying to select an element within a chrome extension pop-up. I’m not having an issue interacting within the pop-up itself but I am having no luck with trying to select an element which is within a scrollable pane. I don’t want to have to hover/scroll as the list of elements is very large.
I’ve used the Ui Explorer to find the corresponding idx, in this example:
The idx range will be from 4 to 504 but only six are visible within the pop-op at any one time. Is it possible to select the item directly using the idx if it is not visible? How can I achieve this? Screenshots included and thanks in advance
I’m returning this error. I assume it’s because it’s not interacting with the main chrome window and with the extension pop-up instead. Any ideas on how to handle it?
thanks for this. It wasn’t quite what I was looking for but pointed me in the right direction. I ended up using a find element for “grouping” to update it to include an index variable and then output the ui element, then used mouse scroll to element, set to instant to take me directly to the correct element.
I’m sure there’s a better way to do it but I don’t have to use the for each in this scenario