如何使用Python和Selenium解决注册页面上的可点击验证码(例如recaptcha v2)?

时间:2019-07-19 09:19:39

标签: python-3.x selenium selenium-chromedriver recaptcha

我正在用python创建硒代码来解决验证码,该验证码需要使用2captcha API单击图像“ ReCaptcha V2”。

请检查:https://2captcha.com/2captcha-api#solving_clickcaptcha

我的第一个问题是以随机名称获取屏幕截图并将其压缩到100Kb以下,并与我的http发布请求一起发送。

我的第二个问题是如何模拟“确定|坐标:x = 39,y = 59; x = 252,y = 72”上的点击

以及验证码解决后如何删除图像?

我的代码:

from selenium import webdriver
from time import sleep, time
from PIL import Image
import requests
import time

# open signup page
browser = webdriver.Chrome('D:\chromedriver')
browser.get('http://testing-ground.scraping.pro/recaptcha')
browser.maximize_window()

# click on checkbox
recaptcha = browser.find_element_by_xpath("//*[@role='presentation']"); time.sleep(3)
recaptcha.click(); time.sleep(3)

#get screenshot
browser.get_screenshot_as_file('iamcaptchaimage.jpg')

#send http request 'post'
url = 'http://2captcha.com/in.php'
files = {'file': open('iamcaptchaimage.jpg', 'rb')}
url = 'http://2captcha.com/in.php'
files = {'file': open('iamcaptchaimage.jpg', 'rb')}
data = {'key': '***', 'method': 'post','coordinatescaptcha':'1','textinstructions':'click on fire hydrant'}
resp = requests.post(url, files=files, data=data)

if resp.ok:
    captcha_id = resp.text[3:]
    print(captcha_id)

# send http request 'get'
fetch_url = "http://2captcha.com/res.php?key=****&action=get&id=" + captcha_id
for i in range(1, 10):
    sleep(5)  # wait 5 sec.
    resp = requests.get(fetch_url)
    if resp.text[0:2] == 'OK':
        break
print(resp.text[3:])

0 个答案:

没有答案