使用Python+Appuim 清理微信的方法
(编辑:jimmy 日期: 2024/11/2 浏览:3 次 )
使用 Appium
安装一下 Python 用到的模块
pip install Appium-Python-Client
获取好友列表
在 Pycharm 中配置一下启动环境
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 启动后截图
点击红框中按钮,将上面的参数填上,点击 start Session
启动后点击刷新按钮,看到的界面和真机上一样了,在真机上点击通讯录按钮并刷新界面
在 appium 界面点击一个好友,可以看到这个好友有一个 content-desc 和 resource-id 代表了昵称和资源 id
然后我们用 Python 获取所有的好友昵称
# 所有好友 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 == '"text-align: center">下面四步骤就是用 Python 模拟微信转账操作
- 按上面获取的昵称搜索得到好友
- 在好友对话框中点击 + 号,获取到转账按钮
- 在转账界面输入 1 元,点击转账按钮,得到是否为好友结果
- 最后返回到搜索页面清空搜索框内容
# 判断是否被删 def is_del(f): time.sleep(2) driver.find_element_by_id('com.tencent.mm:id/cn1').click() time.sleep(2) # 在搜索框输入搜索信息 driver.find_element_by_id('com.tencent.mm:id/bhn').send_keys(f) time.sleep(2) #点击好友 driver.find_element_by_id('com.tencent.mm:id/tm').click() time.sleep(2) # 转账操作 + 号 driver.find_element_by_id('com.tencent.mm:id/aks').click() time.sleep(2) # 转账按钮 driver.find_elements_by_id('com.tencent.mm:id/pa')[5].click() time.sleep(2) # 数字 1 driver.find_element_by_id('com.tencent.mm:id/cx_').click() time.sleep(1) # 付款界面转账按钮 driver.find_element_by_id('com.tencent.mm:id/cxi').click() time.sleep(2) # 判断是否被删 is_exist = is_element('com.tencent.mm:id/dos') if is_exist: # 不能转账就点击确定按钮 driver.find_element_by_id('com.tencent.mm:id/doz').click() time.sleep(2) else: # 可以转账就后退 driver.press_keycode(4) # 后退到 搜索页面 driver.press_keycode(4) driver.press_keycode(4) driver.press_keycode(4) driver.press_keycode(4) # 清空文本框 driver.find_element_by_id('com.tencent.mm:id/bhn').send_keys('') return f def is_element(id): flag = None try: driver.find_element_by_id(id) flag = True except NoSuchElementException: flag = False finally: return flag因为 appium 操作 APP 有延迟,所以在每个操作后延迟 2 秒
删除好友
在得到被删好友的联系人之后,用个步骤在 Python 中微信删除好友
在搜索框中用昵称搜索被删好友的联系人
进入对话界面后,点击界面右上角的...
点击好友头像
点击个人信息界面右上角的...
点击删除按钮
在选择框中点击删除
# 删除好友 def del_friend(friend): time.sleep(2) driver.find_element_by_id('com.tencent.mm:id/cn1').click() time.sleep(2) driver.find_element_by_id('com.tencent.mm:id/bhn').send_keys(friend) time.sleep(2) #点击好友 driver.find_element_by_id('com.tencent.mm:id/tm').click() time.sleep(2) # 右上角... driver.find_element_by_id('com.tencent.mm:id/cj').click() time.sleep(2) # 头像 driver.find_element_by_id('com.tencent.mm:id/f3y').click() time.sleep(2) # 右上角... driver.find_element_by_id('com.tencent.mm:id/cj').click() time.sleep(2) # 删除按钮 driver.find_element_by_id('com.tencent.mm:id/g6f').click() time.sleep(2) # 选中删除 driver.find_element_by_id('com.tencent.mm:id/doz').click()总结
下一篇:详解使用python爬取抖音app视频(appium可以操控手机)