短影片app原始碼,圖形和簡訊驗證碼的自動識別獲取

zhibo系統開發發表於2023-11-17

短影片app原始碼,圖形和簡訊驗證碼的自動識別獲取

圖形驗證碼識別

    driver.save_screenshot('v_code.png')  # 先把整個頁面截圖下來
    element = driver.find_element_by_id('sccImg')  # 定位驗證碼元素
    print("驗證碼元素位置:", element.location)
    print("驗證碼元素尺寸:", element.size)
    left = element.location['x']
    top = element.location['y']
    right = element.location['x'] + element.size['width']
    bottom = element.location['y'] + element.size['height']
    im = PIL.Image.open('v_code.png')
    im = im.crop((left, top, right, bottom))
    # im.show()
    image=pytesseract.image_to_string(im)


簡訊驗證碼自動獲取

url = "檢視api檔案"
response = requests.get(url)
print(response.text)


以上就是短影片app原始碼,圖形和簡訊驗證碼的自動識別獲取, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2995929/,如需轉載,請註明出處,否則將追究法律責任。

相關文章