1. 程式人生 > 其它 >輕鬆熊喵喵個人筆記 -- 常用cmd命令合集

輕鬆熊喵喵個人筆記 -- 常用cmd命令合集

暫時記錄

adb shell input text 1234 ...............輸入1234 
adb shell input tap 100 0......................點選100,0 
adb shell input swipe 100 0 100 200  ....從100,0劃到100,200 
adb shell dumpsys activity activities ......顯示活動程式 
adb shell am start -n ActivityName .........啟動應用程式      
adb shell input keyevent X..........模擬手機按鍵

用python批量自動執行命令列
import os os.system('adb shell input swipe 100 0 100 200')