Here is the question. How can I count all the elements with the resource ID body_bubble on a scrollable view ?
When I use the driver.findElements (By.id (“body_bubble”)).size() method, it gets only the elements that are currently in view (visible on the screen).
How can I find all the elements? I know that I can use something like new UiScrollable(new UiSelector()).scrollIntoView, but I can’t wrap my head around it.
Please help me out.