pythonapp自动化_python实现APP自动化
# /usr/bin/python# encoding:utf-8import csvimport osimport time# 启动类class App(object):def __init__(self):self.content = ""self.startTime = 0# 启动Appdef LaunchApp(self):cmd = 'adb shell am start -W -n c...