微信版本:3.9.5.81 调用后报错“LookupError: Find Control Timeout(10s): {Name: '输入', ControlType: EditControl}” 按照Issues#107说的修改后是不报错,但是没有效果,不能自动发送消息
解决方案:
- 在 wxauto.py 的文件中找到 WeChat 的类,并添加下述方法
def ChangeWindow(self, window_title): self.EditMsg = self.UiaAPI.EditControl(Name=f'{window_title}')
2.之后在 ChatWith 方法中加入如下代码
def ChatWith(self, who, RollTimes=None): ''' 打开某个聊天框 who : 要打开的聊天框好友名,str; * 最好完整匹配,不完全匹配只会选取搜索框第一个 RollTimes : 默认向下滚动多少次,再进行搜索 ''' self.UiaAPI.SwitchToThisWindow() self.ChangeWindow(who) # [2] 加入如下方法,在每次更改聊天对象时调用 ChangeWindow 方法 ... ...
https://blog.csdn.net/hifiveee/article/details/131764712?spm=1001.2014.3001.5502
标签:Control,端微,Name,EditControl,self,ControlType,Find From: https://www.cnblogs.com/xujunhui/p/17642639.html