我使用AndroidViewClient
以通过MonkeyRunner
使用Python
。我需要以编程方式启动AVD
并在AVD
启动过程完成时得到通知。我怎么能抓住这个事件?执行只是没有到达subprocess.run()
函数后的行。
这是我如何开始我的AVD
:
subprocess.run('emulator -avd Nexus_5_API_26 -wipe-data', shell=True)
// the execution just does not reach this line