码迷,mamicode.com
首页 > 编程语言 > 详细

python 将验证码保存到本地 读取 写入

时间:2017-11-25 16:24:11      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:key   find   ret   input   _id   网址   输入验证码   url   路径   

 1 #验证码
 2 #读取验证码网址、打开本地路径、写入、输入验证码
 3 downpicture = urllib.request.urlopen(SecretCodeUrl).read()
 4 local = open(address, wb)
 5 local.write(downpicture)
 6 local.close()
 7 print(u"请从桌面寻找你的验证码")
 8 print (u"请输入验证码:")
 9 SecretCode = input()
10 driver.find_element_by_id(txtSecretCode).send_keys(SecretCode)

 

python 将验证码保存到本地 读取 写入

标签:key   find   ret   input   _id   网址   输入验证码   url   路径   

原文地址:http://www.cnblogs.com/liuyunbuji/p/7895397.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!