我使用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