# -*- coding: utf-8 -*-
import os
import time
def doshell(cmd,str):
print(" ",str,cmd)
output = os.popen(cmd)
a=output.read()
print(a)
output.close()
def sendmsg():
n = 9
index = 0
text='adb shell input text '
text+=inputtext
while index < n:
cmd='adb shell input tap 500 '
y = start + index*lenth
cmd = cmd + str(y)
doshell(cmd,'点击对话人')
doshell('adb shell input tap 900 1900','点击发送按钮') #点击发送按钮
doshell('adb shell input tap 200 1900','点击编辑框') #点击编辑框
#doshell(text,'写入数据到编辑框') #写入数据到编辑框
doshell('adb shell input keyevent 66','点击回车发送') #点击回车发送
doshell('adb shell input tap 100 700','点击编辑框') #点击编辑框
doshell('adb shell input keyevent 4','点击回车键') #这条命令相当于按了设备的Backkey键
doshell('adb shell input tap 400 1900','点击联系人') #点击联系人
index += 1
w=1080
h=2016
start=380
lenth = 170
inputtext='https://mp.csdn.net/postedit/89531309'
doshell('adb shell am start -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -n com.tencent.mobileqq/com.tencent.mobileqq.activity.SplashActivity','打开qq')
#点击联系人
doshell('adb shell input tap 400 1900','点击联系人')
#点击通讯录
doshell('adb shell input tap 800 1100','点击通讯录')
#点击通讯录
doshell('adb shell input swipe 50 1000 50 265 500','拖动位置到发送目标')
time.sleep(1)
while 1:
sendmsg()
doshell('adb shell input swipe 50 1685 50 500 500','换人')