大麦网抢票--python

简单的了解了下,这个库就是PythonGUI自动化工具库,可以操作鼠标和键盘完成一系列动作,发现做测试的时候,不仅可以使用他来做功能测试,还可以做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是提交订单的截图。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

晨曦_子画

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值