智能遍历测试公开课

智能遍历测试的方法

monkey

adb shell monkey -p com.xueqiu.android -v 200
--throttle
--pct-touch
-f 支持脚本

maxim

https://github.com/zhangzhao4444/Maxim

cd Maxim
adb push framework.jar /sdcard
adb push monkey.jar /sdcard
adb shell \
  CLASSPATH=/sdcard/monkey.jar:/sdcard/framework.jar \
  exec app_process /system/bin tv.panda.test.monkey.Monkey \
  -p io.appium.android.apis  \
  --uiautomatordfs  \
  --running-minutes 60  \
  -v -v

fastbot

git clone https://github.com/bytedance/Fastbot_Android.git
cd Fastbot_Android
adb push *.jar /sdcard
adb push libs/* /data/local/tmp/
adb shell \
  CLASSPATH=/sdcard/monkeyq.jar:/sdcard/framework.jar:/sdcard/fastbot-thirdpart.jar \
  exec app_process /system/bin com.android.commands.monkey.Monkey \
  -p io.appium.android.apis \
  --agent robot \
  --throttle 200 \
  -v -v 1000

appcrawler

app diff

1 个赞

image