赞
踩
上篇文章写到了使用windows11打开安卓应用,那么使用python来抢大麦网票应该也是可以的吧。库使用的是
pyautogui
。
简单的了解了下,这个库就是Python
的GUI
自动化工具库,可以操作鼠标和键盘完成一系列动作,发现做测试的时候,不仅可以使用他来做功能测试,还可以做UI
测试。
import pyautogui import time time.sleep(3) # 立即购买 def buy(img): while True: # 查找有没有立即购买的按钮 buyBtn = pyautogui.locateOnScreen(img) print(buyBtn) if buyBtn is not None: pyautogui.click(buyBtn.left + buyBtn.width/2, buyBtn.top+buyBtn.height/2) break time.sleep(0.001) # 选择价格 def price(img): while True: price = pyautogui.locateOnScreen(img) print(price) if price is not None: pyautogui.click(price.left + price.width/2, price.top+price.height/2) break time.sleep(0.001) # 选择购买票数,一个不用这个函数,两票用一次,三票用两次 def add(img): addBtn = pyautogui.locateOnScreen(img) if addBtn is not None: # 点击一下,买两张 pyautogui.click(addBtn.left + addBtn.width/2, addBtn.top+addBtn.height/2) # 下单 def enter(img): enterBtn = pyautogui.locateOnScreen(img) if enterBtn is not None: pyautogui.click(enterBtn.left + enterBtn.width/2, enterBtn.top+enterBtn.height/2) # 选择人员 def check(img): while True: checkBtn = pyautogui.locateOnScreen(img) print(checkBtn) if checkBtn is not None: pyautogui.click(checkBtn.left + checkBtn.width/2, checkBtn.top+checkBtn.height/2) break time.sleep(0.001) # 添加其他人,不需要循环查找,节省时间 def checkOther(img): checkOtherBtn = pyautogui.locateOnScreen(img) print(checkOtherBtn) if checkOtherBtn is not None: pyautogui.click(checkOtherBtn.left + checkOtherBtn.width/2, checkOtherBtn.top+checkOtherBtn.height/2) # 提交订单 def submit(img): submitBtn = pyautogui.locateOnScreen(img) print(submitBtn) if submitBtn is not None: pyautogui.click(submitBtn.left + submitBtn.width/2, submitBtn.top+submitBtn.height/2) buy('./img/damai1.png') price('./img/780.png') add('./img/add.png') enter('./img/enter.png') check('./img/check.png') checkOther('./img/check1.png') submit('./img/submit.png')
以上代码的图片为截图,比如大麦网购买截图啥的,举个例子,在购买的页面,有一个按钮叫做立即购买,所以截图这个区域即可,780是价格的截图,add是增加票数的截图,enter是购买的截图,check和check1是购买人的截图,submit是提交订单的截图。
以上图片都是保存在了img
文件夹中。
以上代码可以实现抢票,但不能保证一定可以抢到,整个过程我看了下,因为是模拟操作,所以耗时还有有的,大概4秒的样子。当然,我可能后面写一个更快的,有时间再看吧。
学好 Python 不论是就业还是做副业赚钱都不错,但要学会 Python 还是要有一个学习规划。最后给大家分享一份全套的 Python 学习资料,给那些想学习 Python 的小伙伴们一点帮助!
包括:Python激活码+安装包、Python web开发,Python爬虫,Python数据分析,人工智能、自动化办公等学习教程。带你从零基础系统性的学好Python!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。