20 lines
519 B
Batchfile
20 lines
519 B
Batchfile
@echo off
|
|
set ADB=C:\Users\12914\Android\sdk\platform-tools\adb.exe
|
|
|
|
echo === Connecting to MuMu ===
|
|
%ADB% connect 127.0.0.1:7555
|
|
timeout /t 2 /nobreak >nul
|
|
|
|
echo === Devices ===
|
|
%ADB% devices
|
|
|
|
echo === Tapping "continue" button ===
|
|
%ADB% -s 127.0.0.1:7555 shell input tap 290 970
|
|
timeout /t 5 /nobreak >nul
|
|
|
|
echo === Screenshot ===
|
|
%ADB% -s 127.0.0.1:7555 shell screencap -p /sdcard/screen3.png
|
|
%ADB% -s 127.0.0.1:7555 pull /sdcard/screen3.png "C:\Users\12914\Desktop\vscode\_mumu_screen_home3.png"
|
|
|
|
echo === Done ===
|