uiautomator实现手机号自动拨号
作者:互联网
直接上代码 import os import uiautomator2 as u2 # 输入10086 device = u2.connect() device.app_start("com.android.contacts") os.system("adb shell input swipe 250 800 600 800") os.system("adb shell input keyevent 8") for i in range(2): os.system("adb shell input keyevent 7") os.system("adb shell input keyevent 15") os.system("adb shell input keyevent 13") print("输入结束!")
主要被用到两个库:
OS和uiautomator2
关键点有两处
知道input keyevent不同的数字对应的按键编号
利用包名打开拨号app
标签:shell,手机号,uiautomator,keyevent,system,拨号,adb,input,os 来源: https://blog.csdn.net/sy20173081277/article/details/115494008