溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python完全識(shí)別驗(yàn)證碼自動(dòng)登錄的示例分析

發(fā)布時(shí)間:2021-07-16 14:05:13 來(lái)源:億速云 閱讀:126 作者:小新 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)Python完全識(shí)別驗(yàn)證碼自動(dòng)登錄的示例分析,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

1、直接貼代碼

#!C:/Python27
#coding=utf-8
 
 
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from pytesser import *
from PIL import Image,ImageEnhance,ImageFilter
from selenium.common.exceptions import NoSuchElementException,TimeoutException
import os,time
 
 
 
 
def before():
 
 
  driver.get(src)
 
 
  time.sleep(1)
 
 
  driver.maximize_window() # 瀏覽器全屏顯示
 
 
  print ('\n瀏覽器全屏顯示 ...')
 
 
 
 
 
 
def Convertimg():
  
  imglocation = ("//*[@id='loginForm']/div[4]/div[2]/img[1]")
  
  #下載驗(yàn)證碼圖片保存到本地
  driver.save_screenshot('E:\\pythonScript\\Codeimages\\code.png')
  
  #打開本地圖片
  im = Image.open('E:\\pythonScript\\Codeimages\\code.png')
 
 
  left = driver.find_element_by_xpath(imglocation).location['x']
  top = driver.find_element_by_xpath(imglocation).location['y']
  right = driver.find_element_by_xpath(imglocation).location['x'] + driver.find_element_by_xpath(imglocation).size['width']
  bottom = driver.find_element_by_xpath(imglocation).location['y'] + driver.find_element_by_xpath(imglocation).size['height']
 
 
  im = im.crop((left, top, right, bottom))
 
 
  im.save('E:\\pythonScript\\Codeimages\\screenshot.png')
 
 
  print u"\n保存驗(yàn)證碼圖片完成"
 
 
  #移除截屏的圖片
 
 
  os.remove('E:\\pythonScript\\Codeimages\\code.png')
 
 
  print u"\n刪除截屏圖片完成"
 
 
  #處理驗(yàn)證碼圖片
  src = ('E:\\pythonScript\\Codeimages\\screenshot.png')
 
 
  #調(diào)用裁剪圖片方法
  Cutedge(src)
 
 
  #移除截屏的圖片
  os.remove('E:\\pythonScript\\Codeimages\\screenshot.png')
  #灰化圖片處理
  im = Image.open('E:\\pythonScript\\Codeimages\\CutedgeImage.png')
  
  imgry = im.convert('L')
  #二值化處理
 
 
  threshold = 100
  table = []
  for i in range(256):
    if i < threshold:
      table.append(0)
    else:
      table.append(1)
  out = imgry.point(table, '1')
 
 
  out.save('E:\\pythonScript\\Codeimages\\rgb.png')
 
 
  #vcode = pytesseract.image_to_string(out)
 
 
  #print (vcode)
 
 
  txtcode = image_to_string(out)
 
 
  print u"\n識(shí)別出驗(yàn)證碼文字為:",image_to_string(out)
 
 
  print len(txtcode.strip())
 
 
  print
 
 
  if len(txtcode.strip()) == 4:
 
 
      print u"長(zhǎng)度相等"
               
  else:
      print u"長(zhǎng)度不相等,退出"
      
      driver.quit()
 
 
  #輸入用戶名和密碼
  driver.find_element_by_id("username").send_keys("123456")
 
 
  driver.find_element_by_id("password").send_keys("123456")
 
 
  time.sleep(2)
 
 
  #對(duì)文本框輸入驗(yàn)證碼值
  driver.find_element_by_id("verifyCode").send_keys(txtcode.strip())
 
 
  time.sleep(3)
  #點(diǎn)擊登錄  
  driver.find_element_by_xpath("//*[@id='loginForm']/div[5]/div/img").click()
  #driver.find_element_by_class_name('loginbtn').click()
  time.sleep(7)
  
  
#針對(duì)有黑色邊框的驗(yàn)證碼圖片的裁剪邊緣  
def Cutedge(src):
  
  #設(shè)置要裁剪的區(qū)域
  im = Image.open(src)
  
  w, h = im.size
  
  print u"\n驗(yàn)證碼原圖寬、高尺寸為:",w,h
  
  box = (2,2,110,30)
  
  im.crop(box).save('E:\\pythonScript\\Codeimages\\CutedgeImage.png')
 
 
  print u"\n保存裁剪的圖片 CutedgeImage.png"
 
 
#  
src = ("https://www.test.com")
 
 
driver = webdriver.Chrome() #Firefox()#
 
 
def method_2(src):
   
  before()
 
 
  #調(diào)用圖片裁剪方法
  Convertimg()
 
 
  
def clickInput():
 
 
  driver.find_element_by_id("inputButton").click()
 
 
  print "\nInput Click Finish"
 
 
def clickOutput():
 
 
  print u"\n開始執(zhí)行點(diǎn)擊事件"
 
 
  #開始執(zhí)行點(diǎn)擊事件      inputButton
  driver.find_element_by_id("outputButton").click()
 
 
  time.sleep(2)
 
 
  print (u'\n開始執(zhí)行任務(wù),執(zhí)行間隔時(shí)間為10分鐘 ...')
 
 
 
 
 
 
  for i in range(1,4):
 
 
    ISOTIMEFORMAT="%Y-%m-%d %X"
  
    strTime = time.strftime( ISOTIMEFORMAT, time.localtime())
 
 
    driver.refresh()
 
 
    print u"\n正在執(zhí)行第 ",i,"次...",strTime
  
    time.sleep(5)
  
    driver.find_element_by_id("outputButton").click()
  
    time.sleep(30)
  
    print
    #刷新瀏覽器
    print u"\n刷新當(dāng)前頁(yè)面 ..."
  
    driver.refresh()
  
    print (u'\n等待間隔時(shí)間為9分鐘 ...')
  
    time.sleep(505)
  
    print u"\n已執(zhí)行完第 ",i,u"次,",u"已等待",i*10,u"分鐘"
   
  print (u'\n已執(zhí)行完成...At The End OF,'+strTime)
  
  driver.quit()
 
 
def isPass():
  try:     
    #driver.find_element_by_id("username").is_displayed() == True
  
    driver.find_element_by_id('status').text == (u"驗(yàn)證碼不正確!")
    
    print (u"\n****校驗(yàn)提示信息_驗(yàn)證碼輸入不正確****")
 
 
    driver.quit()
 
 
    print (u"\n關(guān)閉瀏覽器,執(zhí)行外層循環(huán)...")
  
  except Exception:
    print (u"\n****校驗(yàn)提示信息_驗(yàn)證碼輸入正確****")
 
 
    clickOutput() #------  click Output
  
method_2(src) #進(jìn)入工作頁(yè)面
 
 
isPass()
 
 
#clickInput() #------  click Input
 
 
#clickOutput() #------  click Output
 
 
 
 
for i in range(1,6):
 
 
  driver = webdriver.Chrome()
  
  src = ("https://www.test.com")
 
 
  method_2(src)
 
 
  isPass()
  
  #clickOutput()

2、控制臺(tái)日志

瀏覽器全屏顯示 ...
 
獲取到元素的文本值為: 
 
保存驗(yàn)證碼圖片完成
 
刪除截屏圖片完成
 
驗(yàn)證碼原圖寬、高尺寸為: 113 34
 
保存裁剪的圖片 CutedgeImage.png
 
識(shí)別出驗(yàn)證碼文字為: gnbn
 
 
 
開始執(zhí)行任務(wù),執(zhí)行間隔時(shí)間為10分鐘 ...
 
正在執(zhí)行第 1 次... 2017-05-25 18:10:24
 
刷新當(dāng)前頁(yè)面 ...
 
等待間隔時(shí)間為9分鐘 ...

關(guān)于“Python完全識(shí)別驗(yàn)證碼自動(dòng)登錄的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI