With XCode8 and Appium 1.6
When trying to iterate through a list of cells (100+)
something like collectionview.findElements(By.className("XCUIElementTypeCell"));
Takes for about 4 minutes to execute.
Is there a better / faster way to do this?
Previously with xCode7/appium 1.5 this only took a couple seconds.
Also we have to use XCUITest navigate through cells.
Is there any scrollTo functionality available? iosautomator had a scrollTo function that work pretty well. XCTest doesn't seem to have a replacement for it.
Now if find the cell, and it's index 120, how do i even scroll to it?