一部のパッケージを除外してモンキー テストを実行するにはどうすればよいですか?</p>
monkey --ignore-crashes --ignore-timeouts --kill-process-after-error --ignore-security-exceptions --throttle 200 -v 20000000
デバイス内のすべてのパッケージのすべてのアクティビティをテストしたいのですが、「com.android.camera」はテストしたくありません。
一部のパッケージを除外してモンキー テストを実行するにはどうすればよいですか?</p>
monkey --ignore-crashes --ignore-timeouts --kill-process-after-error --ignore-security-exceptions --throttle 200 -v 20000000
デバイス内のすべてのパッケージのすべてのアクティビティをテストしたいのですが、「com.android.camera」はテストしたくありません。
モンキー balcklist オプション--pkg-blacklist-fileを使用します。
1、blacklist.txt という名前の新しいファイルを作成します。このファイルには、テストしたくないパッケージ名が 1 行ずつ含まれています。
2、このファイルを /sdcard/blacklist.txt のようにデバイスにプッシュします
3、monkey を実行し、balcklist オプションを使用します。
サル --pkg-blacklist-file /sdcard/blacklist.txt --ignore-crashes --ignore-timeouts --kill-process-after-error --ignore-security-exceptions --throttle 200 -v 20000000