服务器之家

服务器之家 > 正文

Python+Appium实现自动化清理微信僵尸好友的方法

时间:2021-09-02 00:07     来源/作者:Python技术

随着微信的使用时间越长,微信好友也越来越多,有些好友将你删除了你也不知道。当我们发消息的时候会出现下面扎心的一幕,然后默默将他删除

Python+Appium实现自动化清理微信僵尸好友的方法

使用 appium

基础的 appium 使用在公众号文章 《解放双手,提高生产力,这款神器你值得拥有》 中已经讲过了,这里使用最新 1.20.0 版本的 appium,旧版本会出现真机微信闪退的情况

安装一下 python 用到的模块

?
1
pip install appium-python-client

获取好友列表

在 pycharm 中配置一下启动环境

?
1
2
3
4
5
6
7
8
9
10
11
desired_capabilities = {
  'platformname': 'android', # 操作系统
  'devicename': '2a254a02', # 设备 id,使用 cmd 中 adb devices 命令得到
  'platformversion': '10.0.10', # 设备版本号,在手机设置中查看
  'apppackage': 'com.tencent.mm', # app 包名
  'appactivity': 'com.tencent.mm.ui.launcherui', # app 启动时主 activity
  'noreset': true # 是否保留 session 信息 避免重新登录
}
 
driver = webdriver.remote('http://localhost:4723/wd/hub', desired_capabilities)
print('微信启动')

下图是 appium 启动后截图

Python+Appium实现自动化清理微信僵尸好友的方法

点击红框中按钮,将上面的参数填上,点击 start session

Python+Appium实现自动化清理微信僵尸好友的方法

启动后点击刷新按钮,看到的界面和真机上一样了,在真机上点击通讯录按钮并刷新界面

Python+Appium实现自动化清理微信僵尸好友的方法

在 appium 界面点击一个好友,可以看到这个好友有一个 content-desc 和 resource-id 代表了昵称和资源 id

Python+Appium实现自动化清理微信僵尸好友的方法

然后我们用 python 获取所有的好友昵称

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 所有好友
friends = []
def get_friends():
  # 好友id
  address_list = driver.find_elements_by_id('com.tencent.mm:id/dy5')
  for address in address_list:
    # 昵称
    friend = address.get_attribute('content-desc')
    # 过滤掉自己、微信团队、文件夹传输助手
    if friend != '某某白米饭' and friend != '微信团队' and friend != '文件夹传输助手':
      friends.append(friend)
    # 获取到最后一个好友返回
    if friend == '
标签:

相关文章

热门资讯

返回顶部