登录网址: https://account.xiaomi.com/
活动页面: https://s1.mi.com/m/app/hd/index.html?id=15042
如题,我想买个小米手环但是小米商城里面的 5 折优惠券太难抢了,于是手写了一段代码(selenium)如下:
from selenium import webdriver
import time
import datetime
chrome_driver = 'C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe' #chromedriver 的文件位置
browser = webdriver.Chrome(executable_path = chrome_driver)
def login(name ,pwd):
browser.get( 'https://account.xiaomi.com/')#登录网址
time.sleep(2)
browser.find_element_by_id("username").send_keys(name) #利用账号标签的 ID,确定位置并 send 信息
browser.find_element_by_id("pwd").send_keys(pwd) #利用密码标签的 ID,确定位置并 send 信息
browser.find_element_by_id("login-button").click()#利用登录按钮的 ID,确定位置并点击
#如果找不到标签 ID,可以使用其他方法来确定元素位置
time.sleep(3)
browser.get("https://s1.mi.com/m/app/hd/index.html?id=15042")#切换到秒杀页面
print('登录成功,正在等待秒杀···')
def buy_on_time():
while True: #不断刷新时钟
now = datetime.datetime.now()
if now.strftime('%H:%M:%S') == '09:00:00' or now.strftime('%H:%M:%S') == '11:00:00' or now.strftime('%H:%M:%S') == '15:00:00' or now.strftime('%H:%M:%S') == '17:00:00':
# if now.strftime('%H:%M:%S') == buytime:
browser.find_element_by_xpath("//div[@class='content-box flex-box']/a[@data-log_code='logcode#activity_code=wjsncc49&page=activity&page_id=15042&bid=3645414.0']/div/img").click()
# browser.find_element_by_xpath("//a[@data-log_code='logcode#activity_code=1i19jyzh&page=activity&page_id=15042&bid=3645414.0']").click()
# browser.find_element_by_xpath("//a[@data-log_code='logcode#activity_code=tudhbjjy&page=activity&page_id=15042&bid=3646017.0']").click() #购买按钮的 Xpath
# browser.find_element_by_xpath("//a[@data-log_code='logcode#activity_code=qpohzak0&page=activity&page_id=15042&bid=3646017.0']").click()
print('当前时段已抢购完毕')
time.sleep(0.01)#注意刷新间隔时间要尽量短
login('username' , 'password')
time.sleep(10)
buy_on_time()#指定秒杀时间,并且开始等待秒杀
运行的时候发现了一个问题,直接运行的话会报错找不到元素
selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element <img src="//cdn.cnbj1.fds.api.mi-img.com/mi-mall/233e61ba38ffb86943fea320adb1607a.jpg"> is not clickable at point (394, 648). Other element would receive the click: <img src="https://cdn.cnbj1.fds.api.mi-img.com/mi-mall/6e607d2e29651daa308b6310998f2991.png?w=216&h=160&bg=7FFFFF">
(Session info: chrome=83.0.4103.7)
然后我每次都要在它运行之后在 Chromedriver 开的浏览器里面F12
打开一下源码之后运行才不会报错,求问大佬这种优惠券的话该怎么抓取,能给个源码就更好啦!
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.