有没有在qq,微信想用一句话不停怼一个人,这篇文章教你在回车能发送消息的一系列软件中,快速多次发送你想发的话。
1.定位输入框的位置
2.在输入框输入文字
3.点击回车键发送文字
4.利用循环实现批量发送
代码如下(示例):
from pynput.mouse import Button, Controller as mouse_cl # 鼠标控制器
from pynput.keyboard import Key, Controller as key_cl # 键盘控制器
import time
代码如下(示例):
from pynput.mouse import Button, Controller as mouse_cl # 鼠标控制器
from pynput.keyboard import Key, Controller as key_cl # 键盘控制器
import time
def send(string):
#定位输入框的位置
mouse = mouse_cl()
mouse.press(Button.left) # 按下左键
mouse.release(Button.left) # 释放左键
# 4.利用循环实现批量发送 range 控制次数,可自行改变
for i in range(50):
# 2.在输入框输入文字
key = key_cl()
key.type(string)
# 3.点击回车键发送文字
key.press(Key.enter)
key.release(Key.enter)
time.sleep(0.5)
if __name__ == '__main__':
time.sleep(5)
send('我最帅') # 此处输入你想输入的内容
用法,运行之后将鼠标在输入框中点击一下,就能自动输入且回车发送