Merge "Add more logging to debug b/270770472" into udc-dev am: 9832afdf2b

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/22382238

Change-Id: I9b2aea1e72ffb2342ee82fdf74fa721c63f43ee0
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Vadim Tryshev
2023-04-01 02:48:08 +00:00
committed by Automerger Merge Worker
@@ -147,6 +147,9 @@ public abstract class AllApps extends LauncherInstrumentation.VisibleContainer {
getAppsListRecyclerBottomPadding());
verifyActiveContainer();
final int newScroll = getAllAppsScroll();
LauncherInstrumentation.log(
String.format("tryGetAppIcon: scrolled from %d to %d", scroll,
newScroll));
mLauncher.assertTrue(
"Scrolled in a wrong direction in AllApps: from " + scroll + " to "
+ newScroll, newScroll >= scroll);
@@ -259,8 +262,7 @@ public abstract class AllApps extends LauncherInstrumentation.VisibleContainer {
}
private int getAllAppsScroll() {
return mLauncher.getTestInfo(
TestProtocol.REQUEST_APPS_LIST_SCROLL_Y)
return mLauncher.getTestInfo(TestProtocol.REQUEST_APPS_LIST_SCROLL_Y)
.getInt(TestProtocol.TEST_INFO_RESPONSE_FIELD);
}