public static void ScrollUpAndTap(this AndroidApp app, Func <AppQuery, AppQuery> lambda = null, string screenshot = null)
        {
            app.ScrollUpEnough(lambda);
            app.Tap(lambda);

            if (screenshot != null)
            {
                app.Screenshot(screenshot);
            }
        }