From 05a2ba95654077d75d669d30b747d29feea251f2 Mon Sep 17 00:00:00 2001 From: Tianqi Xu Date: Wed, 31 Jul 2024 14:17:01 +0300 Subject: [PATCH] Tiny action fix --- crab/actions/android_actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crab/actions/android_actions.py b/crab/actions/android_actions.py index a6fae72..3c188b9 100644 --- a/crab/actions/android_actions.py +++ b/crab/actions/android_actions.py @@ -162,7 +162,7 @@ def open_app_drawer(env) -> None: """ execute_adb("shell input keyevent KEYCODE_HOME", env) sleep(0.5) - execute_adb("shell input swipe 800 2000 800 100 200", env) + execute_adb("shell input swipe 800 2000 800 100 500", env) sleep(_DURATION)