Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用AndroidViewClient自动测试我的 android 应用程序。我需要按“Home”、“Back”和“Enter”等 Android 设备按钮。我该怎么做?
这是我为按键编写的一个函数BACK:
def back(self): self.shell('input keyevent KEYCODE_BACK')
以同样的方式使用keyevent KEYCODE_HOMEand keyevent KEYCODE_ENTERforHOME和ENTER键。 我将这些函数直接放入adbclient.py文件中,但您也可以在代码文件中将它们定义为外部方法。
keyevent
KEYCODE_HOME
KEYCODE_ENTER
adbclient.py