Skip to content Skip to sidebar Skip to footer

How To Test Android Application;s Ui Using Monkey

I am trying to test my Android app using Monkey. There they say use this command, $ adb shell monkey -p your.package.name -v 500 In my app, I have package name as travelceylon\clie

Solution 1:

You should separate the parts of your package name with dots:

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

As you can see in the error, it omits the \ from the package name:

AllowPackage: travelceylonclient :IncludeCategory: 
                          ^ ???

Post a Comment for "How To Test Android Application;s Ui Using Monkey"