프로그래밍언어/안드로이드

파이썬 adb 무선 접속

부산딸랑이 2022. 5. 21. 17:30

from ppadb.client import Client as AdbClient
client = AdbClient(host="127.0.0.1", port=5037)
devices = client.devices()
device = devices[0]

device.shell("input touchscreen tap 600 1200")
저작자표시 (새창열림)