如何使用Monkey测试Android应用程序的UI

时间:2012-03-20 19:49:15

标签: android stress-testing monkey

我正在尝试使用Monkey测试我的Android应用。他们说在那里使用这个命令,

$ adb shell monkey -p your.package.name -v 500

在我的应用程序中,我的包名为travelceylon \ client,所以如果我将命令命名为:

adb -e shell monkey -p travelceylon\client -v 1000

...它会显示如下错误:

:Monkey: seed=0 count=1000
:AllowPackage: travelceylonclient
:IncludeCategory: android.intent.category.LAUNCHER
:IncludeCategory: android.intent.category.MONKEY
** No activities found to run, monkey aborted.

那我在这里做错了什么?

1 个答案:

答案 0 :(得分:2)

您应该使用点分隔包名称的各个部分:

adb -e shell monkey -p travelceylon.client -v 1000

正如您在错误中看到的那样,它忽略了包名称中的\

AllowPackage: travelceylonclient :IncludeCategory: 
                          ^ ???