I am not familiar with android development. But just want to use python script to do something on my android device/emulator. For example:
- change system settings.
- set a proxy.
- open app A, click some place, do something else...
- then open app B, tap up down, do something else...
- and so on.
I have tried
monkeyrunner, which actually is not by python(it's by Jython), and usually I don't know why the example code can't work(lack of debugging methods in this way.I can use ipython or pycharm if one support python),appium, which introduce a very good framework, completely support python.But the tutorial always says about testing only one app, seems it can not change system settings or something like pressHOMEorBACKbutton.
I have never do such things before, are there any tools or tutorials could cover my case?

