强大!用 60 行代码自动抢微信红包
春节来到,红包们大概率在微信各大群中肆虐,大家是否都一样不抢到红包们心里就感觉错过了一个亿,可总会被这事那事耽误而遗憾错过,下面用 Python 写一个自动抢红包代码
启动入口
启动程序的配置和公众号文章《用 Python + Appium 的方式自动化清理微信僵尸好友》的配置一样
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | fromappiumimportwebdriverfromselenium.webdriver.common.byimportBy fromselenium.webdriver.support.uiimportWebDriverWait fromappium.webdriver.common.touch_actionimportTouchAction fromselenium.webdriver.supportimportexpected_conditionsasEC desired_capabilities={ 'platformName':'Android',# 操作系统 'deviceName':'2a254a02',# 设备 ID '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) # 设置等待超时时间 wait=WebDriverWait(driver,60)
|
点击进入聊天窗口
微信在一般情况下最新的聊天记录将被放在第一个,所以只需要打开第一个聊天窗口检查有没有红包就可以了,用 id 为 com.tencent.mm:id/e3x
可以找到所有的聊天信息,我们取第一个聊天群的索引
1 2 3 | # 进入第一个聊天框red_packet_group=driver.find_elements_by_id('com.tencent.mm:id/e3x')[0]red_packet_group.click()
|
找到红包
进入聊天群后,红包图片检查是否存在红包,它的 id 为 com.tencent.mm:id/r2
1 2 3 4 | # 检查红包reds=driver.find_elements_by_id('com.tencent.mm:id/r2')iflen(reds)==0: driver.keyevent(4)
|
抢红包
点击红包后会出现以下 3 种情况
- 红包已经被自己领取了
- 红包手慢了没抢到
- 红包未领取
前两种情况红包已经失效了,最后一种才是可以打开的红包
红包已经失效了
在上面代码中都是用 id 检查元素是否存在,这里使用查找文字已存入零钱
和手慢了
判断红包是否已经失效
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # 判断元素是否存在defis_element_exist_by_xpath(driver,text):try: driver.find_element_by_xpath(text) exceptExceptionase: returnFalse else: returnTrue # 领取了 is_open=is_element_exist_by_xpath(driver,'//android.widget.TextView[contains(@text, "已存入零钱")]') # 没抢到 is_grabbed=is_element_exist_by_xpath(driver,'//android.widget.TextView[contains(@text, "手慢了")]') ifis_openoris_grabbed: driver.keyevent(4)
|
打开红包
打开红包比较简单,只需要找到 开
字的 id
1 2 | wait.until(EC.element_to_be_clickable((By.ID,"com.tencent.mm:id/den"))).click()wait.until(EC.element_to_be_clickable((By.ID,"com.tencent.mm:id/dm"))).click()
|
删除红包
最后我们将红包删除,防止红包被重复打开。当长按红包时,微信红包会出现删除按钮
1 2 3 | TouchAction(driver).long_press(red).perform()wait.until(EC.element_to_be_clickable((By.ID,"com.tencent.mm:id/gam"))).click() wait.until(EC.element_to_be_clickable((By.ID,"com.tencent.mm:id/doz"))).click()
|
总结
这是学习并使用 Appium 的第三篇文章,Appium 可以帮将手机操作自动化,大家学废了吗?
示例代码:https://github.com/JustDoPython/python-examples/tree/master/moumoubaimifan/wxRedPacket
以上是 强大!用 60 行代码自动抢微信红包 的全部内容,
来源链接:
utcz.com/a/131702.html