当前位置:   article > 正文

使用uiautomation 实现微信自动发送消息_uiautomation 微信

uiautomation 微信

import uiautomation as auto
import time
wechatWindow = auto.WindowControl(searchDepth=1,className=‘WeChatMainWndForPC’,Name=‘微信’)
button = wechatWindow.ButtonControl(Name=‘通讯录’)
button.Click()
search = wechatWindow.EditControl(Name=‘搜索’)

search.Click()
search.GetParentControl().GetChildren()[1].SendKeys(“就”)
searResult = wechatWindow.ListControl(Name=‘搜索结果’).GetChildren()
for sear in searResult:
print(sear.Name)
if sear.Name == “就”:
sear.Click()
break
session = wechatWindow.ListControl(Name=“会话”)
wechatWindow.ButtonControl(Name=‘就’)

button =wechatWindow.ButtonControl(Name=‘聊天信息’)

wechatWindow.EditControl(Name=“输入”).SendKeys(“你好”)
sendBtn = wechatWindow.ButtonControl(Name=‘sendBtn’)
sendBtn.Click()
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/94380
推荐阅读
相关标签
  

闽ICP备14008679号