python+selenium小米商城紅米K40手機自動搶購的示例代碼

使用環境

1、python3
2、selenium

selenium使用簡述

1、安裝selenium

pip install selenium

2、安裝ChromeDriver

下載地址:http://chromedriver.storage.googleapis.com/index.html

註意:下載的ChromeDriver需要與Chrome版本一致。

1)Chrome版本查看:

在這裡插入圖片描述

2)ChromeDriver對應版本下載:

在這裡插入圖片描述

3)ChromeDriver下載後解壓到任意文件夾,建議可以放到項目目錄中,拷貝chromedriver可執行文件的路徑,代碼中需要用到:

代碼實現

from selenium import webdriver
import time
import datetime


class XiaoMi():
  def __init__(self):
    self.name = "" #登陸小米商城用戶名
    self.pwd = "" #登陸小米商城密碼
    self.buytime = "2021-03-12 10:00:00" # 指定秒殺時間,並且開始等待秒殺
    self.chrome_driver = "" #chromedriver的文件位置 例如:self.chrome_driver = 'C:/Desktop/lib/chromedriver.exe' 

    self.browser = webdriver.Chrome(executable_path = self.chrome_driver)

  def login(self):
    self.browser.get('https://account.xiaomi.com/') # 登錄網址
    time.sleep(2)

    self.browser.find_element_by_name("account").send_keys(self.name)
    self.browser.find_element_by_name("password").send_keys(self.pwd)
    self.browser.find_element_by_xpath('//*[@type="submit"]').click()
    time.sleep(3)
    #搶購紅米K40
    self.buy_on_time()

  #搶手機紅米K40
  def buy_on_time(self):
    self.browser.get("https://www.mi.com/buy/detail?product_id=13544") # 切換到秒殺頁面
    time.sleep(2)
    self.browser.find_element_by_xpath('//div[@class="sale-btn"]/a').click() # 再次登陸
    time.sleep(2)
    self.browser.find_element_by_xpath("//div[@class='option-box']/ul/li[4]").click() # 選擇12G+256G版本
    print('登錄成功,正在等待搶購···')

    while True: # 不斷刷新時鐘
      now = datetime.datetime.now()
      if now.strftime('%Y-%m-%d %H:%M:%S') == self.buytime:
        self.browser.find_element_by_xpath('//div[@class="sale-btn"]/a').click() # 購買按鈕的Xpath
        print('下單成功,請抓緊付款!')
      time.sleep(0.01) # 註意刷新間隔時間要盡量短

if __name__ == '__main__':
  MS = XiaoMi()
  MS.login()

到此這篇關於python+selenium小米商城紅米K40手機自動搶購的示例代碼的文章就介紹到這瞭,更多相關python+selenium自動搶購內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: