Moneykey 引數
adb shell monkey , 指隨機時間數量,運行結果:
adb shell monkey 100

-p: 指定運行app的包名
adb shell monkey -p com.package.name 100
-throttle:每個事件之間的時間間隔
adb shell monkey -p com.package.name --throttle 1000 100
-s:seed引數,指定隨機生成數的seed值,seed值一致,則事件一致
adb shell monkey -s -p --throttle 1000 100
–ptc-touch:觸摸事件,點擊事件的占比,除去導航、滑動等操作
adb shell monkey --pct-touch

–pct-motion:動作事件
adb shell monkey --pct-touch --pct-touch
–pct-trackball:軌跡球事件
–pct-nav:基本導航事件
–pct-syskeys:系統導航,HOME、BACK、撥號、音量
–pct-appswitch:設定啟動Activity的事件百分比
–ignore-crashes:忽略崩潰和例外
adb shell monkey --ignore-crashes
–ignore-timeouts:忽略超時
adb shell monkey --ignore-timeouts
-v:日志輸出級別
Monkey Script
執行命令
adb shell monkey -f <script_file> <event_count>
<script_file>:腳本檔案
<event_count>:執行次數
Dispatch Trackball命令:軌跡球事件
Dispatch Trackball(long downtime, long eventide, int action, float x, float y, float pressure, float size, int metastate, float xprecision, float yprecision, int device, int edgeflags) 其中:
- long downtime :鍵最初按下的時間
- long eventide:時間發生的事件
- int action:具體操作, 0代表按下,1代表彈起
- float x,y:坐標點
- pressure:壓力大小(0,1)
- size:觸摸(0,1)
- device:事件的來源
- 只許關注action、x、y,其他引數使用默認值就可
DispatchPointer命令:點擊事件
DispatchPointer(long downtime, long eventide, int action, float x, float y, float pressure, float size, int metastate, float xprecision, float yprecision, int device, int edgeflags)
- int action:具體操作, 0代表按下,1代表彈起
- float x,y:坐標點
DispatchString命令:輸入字串事件
DispatchString(String)
LaunchActivity命令:啟動應用
LaunchActivity(package, Activity)
UserWait命令:等待事件
Userwait(1000)
DispatchPress命令:按下鍵值
DispatchPress(int keycode)
Monkey Script實踐
type = user
count=10
speed=1.0
start data >>
#上面內容照抄
LaunchActivity(packageName, MainActivity)
Userwait(2000)
DispatchPointer(10,10,0,100,100,1,1,-1,1,1,0,0)
DispatchPointer(10,10,1,100,100,1,1,-1,1,1,0,0)
DispatchString(test)
Userwait(1000)
DispatchPress(66)
Userwait(1000)
DispatchPointer(10,10,0,400,100,1,1,-1,1,1,0,0)
DispatchPointer(10,10,1,400,100,1,1,-1,1,1,0,0)
Userwait(6000)
將腳本push到/data/local/tmp
執行 adb shell monkey -f script_file 2
轉載請註明出處,本文鏈接:https://www.uj5u.com/qita/389125.html
標籤:其他
