有些人可以帮助我为多个设备安装android猴子测试吗?
- > adb shell monkey -p com.example -v 500000
所以我在PC上连接了10台设备。我想对所有设备运行monkey test并同时捕获日志。
任何人都可以建议我吗?
答案 0 :(得分:2)
使用这样的脚本:
#! /bin/bash
for s in s1 s2 s3
do
adb -s $s shell monkey -p com.example -v 500000 > $s.log
done
其中s1,s2,...是您设备的序列号