Delay between “type” commands in AdbClient (which doesn't exist in monkeyrunner)
问题 I am making a switch from monkeyrunner to AndroidViewClient. It is nice because it is all Python. However, when issuing type or press commands, the lag between each command is like one second: import sys import os import time try: sys.path.append(os.path.join(os.environ['ANDROID_VIEW_CLIENT_HOME'], 'src')) except: pass from com.dtmilano.android.adb.adbclient import AdbClient, Device device.type("hello") # type a space device.press('KEYCODE_SPACE', 'DOWN_AND_UP') device.type("world") The above