大家好,本文将围绕安卓平板可以安装python吗展开说明,安卓平板可以运行python是一个很多人都想弄明白的事情,想搞清楚安卓平板可以装python吗需要先了解以下几个事情。
大家好,小编来为大家解答以下问题,安卓平板python编程软件,安卓平板可以运行python,今天让我们一起来看看吧!
Source code download: 本文相关源码
How can I write in python to reboot android tablet and launch any app multiple times. Is there any better way to automate this test.
解决方案
you can use the command adb reboot to reboot a device.
There are likely a plethora of ways you could use python to make this adb command. The simplest of which that I can think of is:
import os
os.system("adb reboot")
you'll have to either put a path infront of adb, run this from the folder that adb is in, or add the folder that adb is in to your system path variable.
If you don't want to go that route (or if you want to do some other more ineteresting things with adb) there exists a python wrapper around the adb tool that will let you interact with it in a more "pythonic" way than simply running system cmds.