当前位置:   article > 正文

C# .NET基于FlaUIAutomation开发PC端微信机器人#2_flaui 微信

flaui 微信

        Hello 朋友们大家好,我们接着上一节:C# .NET基于FlaUIAutomation开发PC端微信机器人#1继续我们的微信机器人开发,本节要实现的内容是获取当前聊天对象的聊天记录。

        首先,必不可少的安装相关库以及初始化FlaUIAutomation本节将不在重复,不清楚的朋友烦请移步上一节文章,话不多说,直接上代码:

  1. public static List<Dictionary<string, string>> GetAllChatRecords()
  2. {
  3. List<Dictionary<string, string>> chatRecords = new List<Dictionary<string, string>>();
  4. using (var automation = new UIA3Automation())
  5. {
  6. // 获取聊天记录的父元素对象
  7. var messageWindowElement = weChatWindow.FindFirstDescendant(cf => cf.ByName("消息"));
  8. // 获取聊天记录的列表项元素(消息列表)
  9. var messageListItems = messageWindowElement.FindAll(TreeScope.Subtree, new PropertyCondition(AutomationObjectIds.ControlTypeProperty, ControlType.ListItem));
  10. // 遍历聊天记录列表项
  11. foreach (var messageListItem in messageListItems)
  12. {
  13. // 获取每条聊天记录对应的用户按钮元素
  14. var userButtonElements = messageListItem.FindAll(TreeScope.Subtree, new PropertyCondition(AutomationObjectIds.ControlTypeProperty, ControlType.Button));
  15. // 创建字典保存聊天记录信息
  16. Dictionary<string, string> chatRecord = new Dictionary<string, string>();
  17. // 遍历用户按钮元素
  18. foreach (var userButtonElement in userButtonElements)
  19. {
  20. // 只有包含发送者的用户按钮才视为有效聊天记录
  21. if (!string.IsNullOrEmpty(userButtonElement.Name))
  22. {
  23. // 将发送者和聊天信息添加到字典中
  24. chatRecord["Sender"] = userButtonElement.Name;
  25. chatRecord["Message"] = messageListItem.Name;
  26. Console.WriteLine(userButtonElement.Name + ":" + messageListItem.Name);
  27. }
  28. }
  29. // 将聊天记录字典添加到列表中
  30. chatRecords.Add(chatRecord);
  31. }
  32. }
  33. return chatRecords;
  34. }

        运行代码,查看效果:

         代码的的具体作用,我已经注释的非常清楚,最后需要再次强调:基于UI自动化库开发的重点是要对自动化目标程序的元素树结构充分了解,分析微信元素结构的工具有很多,我个人自用的在上一节已经分享了,需要的朋友请移步上一节文章,谢谢大家,下节再见~~

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

闽ICP备14008679号