-
图片测试脚本
摘要:#!/bin/bashecho "Hello World !"declare -i i=0while [ $i -lt 150 ]do echo $i adb push ./1.png "/sdcard/LEWA/theme/deskwallpaper/${i}.png" let ...
阅读全文
-
android test
摘要:Instrumentation:monitor all of theinteraction the system has with the application里面提供了许多有用的方法:如sendKeySync,实现方法(IWindowManager.Stub.asInterface(ServiceManager.getService("window"))) .injectKeyEvent(event, true);通过模拟Input的sendKeyEvent给WindowManger发送事件。android测试流程:
阅读全文
|