摘要: python 多设备同时安装app包 上代码 阅读全文
posted @ 2019-07-18 18:30 Golover 阅读(516) 评论(0) 推荐(0) 编辑
摘要: os.system的结果只是命令执行结果的返回值,执行成功为0: >>> a=os.system('adb devices')>>> a0可以看到,a为0但用os.popen就可以读出执行的内容,popen返回的是file read的对象,对其进行读取使用read(),就可看到执行的输出: >>> 阅读全文
posted @ 2019-07-18 18:27 Golover 阅读(3703) 评论(0) 推荐(0) 编辑
摘要: 上代码 1 ##获取设备多台设备号列表 2 def get_deviceid(): 3 str_init=' ' 4 all_info= os.popen('adb devices').readlines() 5 print('adb devices 输出的内容是:',all_info) 6 7 for i in range(len(all_inf... 阅读全文
posted @ 2019-07-18 18:12 Golover 阅读(3123) 评论(0) 推荐(0) 编辑