public void AppLaunches() { if (platform == Platform.Android) { // Screenshots produce UnauthorizedException on iOS for some reason app.Screenshot("First screen."); } AppResult[] items = app.Query("MapListCell"); foreach (AppResult item in items) { app.Click(item); app.Back(); } //if (platform == Platform.Android) //{ // app.ScrollDownTo(c => c.Id("MapListCell").All().Index(6), c => c.Id("MapListView")); // app.ScrollDown(); //} }