I'm working on testing an iOS app with Calabash, and ran into the problem where the command scroll 'UIScrollView', :down
scrolls down the wrong view, since the first view it finds is a UIPageViewController, not the scrollview inside it.
Is there any way I can distinguish between the two views? The basic UIScrollView doesn't have a custom class, and I don't want to create one just for the sake of testing. Any other options? I can't find anything useful in the calabash docs.
Cheers!