文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

python selenium 模拟浏览器自动操作抢购脚本

2023-09-13 11:32

关注

每逢秒杀,都在遗憾网速和手速慢没能抢购到商品吧。

手写一个脚本,让程序帮你抢,抢到的概率会大大提升。

废话不多说,直接上代码。

本实例以华为官网抢购手机为例

"""(1) 安装 chromedriver a. 去官网 (http://chromedriver.storage.googleapis.com/index.html) 下载对应版本的driverb. 解压后将exe文件放入本地谷歌浏览器的安装目录 例如: C:\Program Files\Google\Chrome\Applicationc. 配置将谷歌安装目录配置到系统环境变量的Path中(2) 安装python(3) 安装 selenium     指令: pip install selenium(4) 打开此文件, 修改    账号参数: userName, password 手机抢购页面链接参数: phonePageUrl 抢购时间参数: buyTimeStr(5) 设置号华为官网的收货地址"""from selenium import webdriverfrom selenium.webdriver.common import byimport timeimport redriver = webdriver.Chrome()elementBy = by.By()# 账号userName = "134******38"password = "l***6"# 首页indexUrl = "https://www.vmall.com/index.html"# 想要抢购的手机页面phonePageUrl = "https://www.vmall.com/product/10086213682650.html#2601010448909"# 提交订单urlsubmitOrderUrl = "/order/nowConfirmcart"buyTimeStr = "2023-07-13 20:00:00"'''模拟浏览器操作华为官网@author acheng@date 2022/10/20 '''def main():    # 先登录    login()    # 指定时间, 未到时间则阻塞    curTime = time.time()    buyTime = time.mktime(time.strptime(buyTimeStr,"%Y-%m-%d %H:%M:%S"))    while curTime < buyTime :         print("当前时间戳:{}, 抢购时间戳:{}".format(curTime,buyTime) , end="\n")        time.sleep(10)        curTime = time.time()    # 抢购    buy()def login():    print("登录")    driver.get(indexUrl)    time.sleep(5)    # pc网页    indexLoginBns = driver.find_elements(elementBy.CLASS_NAME, "r-gy4na3")    if not indexLoginBns:         for bn in indexLoginBns:            if bn.text == "请登录":                bn.click()                break    else :        # 移动网页        indexLoginBns = driver.find_elements(elementBy.CLASS_NAME,"r-1ff274t")        for bn in indexLoginBns:            if bn.text == "登录":                bn.click()                break    time.sleep(5)    loginElements = driver.find_elements(elementBy.CSS_SELECTOR, ".hwid-input-root")    for e in loginElements:        inputele = e.find_element(elementBy.TAG_NAME, "input")        attr = inputele.get_attribute("type")        if attr == "text":            inputele.send_keys(userName)        elif attr == "password":            inputele.send_keys(password)    loginBtnElement = driver.find_element(elementBy.CSS_SELECTOR, ".hwid-login-btn")    loginBtnElement.click()    #需要手机验证码     # 此处手动完成验证码验证 预留一分钟    time.sleep(60)    print("登录成功")def buy():    driver.get(phonePageUrl)    time.sleep(5)    print("打开指定手机 --> 准备抢购")    driver.refresh()    time.sleep(5)    buyBtns = driver.find_elements(elementBy.CLASS_NAME, "product-button02")    cur_url = driver.current_url    canBuy = False    if buyBtns is None:        print("无法获取下单按钮")        return    time.sleep(2)    # 如果没有进入提交订单页面则一直点击立即下单    buyCountNum = 1    while not re.search(submitOrderUrl, cur_url) and not canBuy :        for buybn in buyBtns:            if buybn.find_element(elementBy.TAG_NAME, "span").text == "立即下单" :                # 此元素被设置了javascript:; , 所以click()无法触发,只能通过执行execute_script执行网页js方法                driver.execute_script('ec.product.orderNow(null,null,this)')                # buybn.click()                canBuy = True                print("点击下单按钮次数: ".format(buyCountNum))                buyCountNum += buyCountNum                break    if canBuy == True :        # 预留时间选地址        time.sleep(15)        submitBtn = driver.find_element(elementBy.CLASS_NAME,"order-submit-btn")        if submitBtn is None:             print("无法提交订单")                      else :            submitBtn.click()        # 运行主函数main()

来源地址:https://blog.csdn.net/qq_17552823/article/details/131717587

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯