Ponomarenko Oleh
Ponomarenko Oleh

Reputation: 810

How to run monkey testing ONLY in application?

How to run monkey testing ONLY in testing application? How can I set border for monkey testing. I don't want that it touches any button out of my testing application.

Upvotes: 2

Views: 768

Answers (1)

einverne
einverne

Reputation: 6682

According to the doc. You can use the option -p to limit your test in specific package.

Something like this:

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

Upvotes: 1

Related Questions