我只是找不到help.py
文件以便为monkeyrunner
创建API引用。 Android references中描述的命令
当我调用monkeyrunner <format> help.py <outfile>
时,monkeyrunner html help.py /path/to/place/the/doc.html
不起作用。
很明显,没有找到help.py
文件,monkeyrunner还告诉我“无法打开指定的脚本文件”。但是,我系统上的locate
不会带给我一个与Monkeyrunner或Android有关的help.py文件。
所以我的问题是:他们在哪里隐藏了用于创建API引用的help.py文件?
最佳答案
我也找不到。但是可以假定它只是通过传入的参数调用MonkeyRunner.help()。如果您只想快速使用它,我创建的这个脚本也称为 help.py :
#!/usr/bin/env python
# Imports the monkeyrunner modules used by this program
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
text = MonkeyRunner.help("html");
f = open('help.html', 'w')
f.write(text);
f.close();
像其他任何Monkeyrunner脚本一样运行它:
$ monkeyrunner help.py
关于android - Android Monkeyrunner的help.py在哪里,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4396408/