1 环境
操作系统:Windows 10
Python版本:3.9.0
Google Chrome 87.0.4280.88
ChromeDriver 87.0.4280.88
PyCharm 2020.2.3 x64
2 需求分析&前期准备
2.0 需求分析
目标是秒杀京东的订单,这里面有几个关键点,首先需要登录京东,其次你需要准备好订单,最后要在指定时间快速提交订单。
登录京东,这里就要用到一个爬虫利器Selenium,它是一个自动化测试工具,利用它我们可以驱动浏览器执行特定的动作,如点击、下拉等等操作,所见即所得。另外对于一些 JavaScript 渲染的页面来说,此种抓取方式非常有效。
2.1 Selenium的安装
Selenium 的安装很简单,dos命令行:
pip3 install selenium
Selenium安装好之后,并不能直接使用,它需要与浏览器进行对接。这里拿Chrome浏览器为例。若想使用Selenium成功调用Chrome浏览器完成相应的操作,需要通过ChromeDriver来驱动。
2.2 ChromeDriver的安装
这里是ChromeDriver的官方下载地址。
链接:https://chromedriver.storage.googleapis.com/index.html 下载之前先来确认下我们使用的Chrome浏览器版本。
通过ChromeDriver的下载链接,找到与之对应的Chrome浏览器版本,根据你电脑系统的平台类型进行下载。
下载完成之后,解压,将其放置在Python安装路径下Scripts文件夹中即可
用PyCharm执行如下代码:
from selenium import webdriver
# 打开Chrome浏览器
driver = webdriver.Chrome()
成功打开浏览器,则证明ChromeDriver版本没问题,即可正常使用Selenium。
from selenium import webdriver
import datetime
import time
# 打开Chrome浏览器
driver = webdriver.Chrome()
def auto_buy(username, password, purchase_list_time):
print(datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), "打开登陆界面")
driver.get("https://passport.jd.com/new/login.aspx")
print(datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), "开始填写账号密码")
driver.find_element_by_link_text("账户登录").click()
driver.find_element_by_name("loginname").send_keys(username)
driver.find_element_by_name("nloginpwd").send_keys(password)
driver.find_element_by_id("loginsubmit").click()
#print(datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), "手动拼图验证")
#time.sleep(10) #此处睡眠时间用来手动拼图验证
print(datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'),"登陆成功")
print(datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), "等待时间到达抢购时间:",purchase_list_time, "......")
while True:
count = 0
for buytime in purchase_list_time:
nowtime = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')
if nowtime == buytime:
try:
count += 1
print(datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), "开始第 %s 次抢购......"%count)
print(datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), "打开购物车并选中商品")
driver.get("https://cart.jd.com/cart_index") # 打开购物车并选中商品
# 如果没有全选,点击全选
if not driver.find_element_by_class_name('jdcheckbox').is_selected():
driver.find_element_by_class_name('jdcheckbox').click()
print(datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), "点击去结算")
driver.find_element_by_link_text("去结算").click() # 去结算
print(datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), "点击提交订单")
time.sleep(5) #提交订单前必须等待几秒【感觉跟电脑性能快慢有关,不卡的电脑可以适当降低尝试】
if driver.find_element_by_id("order-submit"):
driver.find_element_by_id("order-submit").click() # 提交订单
print(datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'),"订单提交成功,请前往订单中心待付款付款")
print("")
continue
except Exception as e:
print(datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), "抢购出现异常,重新抢购: ", e)
continue
time.sleep(0.001)
purchase_list_time = [
"2020-12-25 10:00:00",
"2020-12-25 10:00:01",
"2020-12-25 10:00:02",
"2020-12-25 10:00:03",
"2020-12-25 10:00:04",
"2020-12-25 10:00:05",
]
auto_buy('帐号', '密码', purchase_list_time)
预约商品到购物车——>修改代码抢购时间——>用PyCharm运行代码即可。