Python ?? Selenium ?? ??? reCAPTCHA v3 ?????????? ????????? ?? ?????? ????

Rajinder Singh
Deep Learning Researcher
04-Sep-2024

??? ??????? ?????? ?? ??? ????? ?? ???, reCAPTCHA v3 Enterprise ????? ?? ???? ???????????? ?? ??? ???? ???? ?? ???? ???????? ?????? ??? ?? ?? ?? ??? ??? reCAPTCHA v2 ?? ??????, reCAPTCHA v3 ?????? ??? ?? ??????? ???? ?? ?? "??? ????" ?? "???? ????" ????? ????? ???? ?? ??? ?????????? ????????? ?? ????????? ???? ??? ??? ??????? ?? ??? ???? ???? ???????? ?? ???, reCAPTCHA v3 Enterprise ?? ?? ???? ??????????? ?? ???? ??, ????? ?? ???? ??????? ?? ??? ???? ???? ???? ????? ??????? ???? ?? ?????? ???? ???? ??? ???????, Python ?? Selenium ???? ??? ??????? ?? ???, ?? ?????? ????????? ?? ???? ???
?? ??? ???, ?? ???? ???? ??????? ?? ??????? ????, reCAPTCHA v3 ?????? ?? ?? ???? ?? ??? ??? ?? ???? ???? ?? ?????? ?? ?????????? ???????
reCAPTCHA v3 Enterprise ???? ???
reCAPTCHA v3 Enterprise Google ?? CAPTCHA ?????? ?? ?? ???? ????? ??????? ??, ???? ?????????? ????? ?? ????? ??? ???? ???????? ???????? ?? ??? ????? ?? ??? ??????? ???? ??? ??? ????? ????????? (????, reCAPTCHA v2) ?? ??????, ?????? ???????????? ?? ?????? ?? ????? ???? ?? ?? ????? ?? ??? ???? ?? ???????? ???? ??, reCAPTCHA v3 ????????? ??? ?????? ??? ?? ??????? ???? ??, ???????? ?????????? ?????? ?? ????? ????? ????? ???? ?? ??? ???? ??????? ????????? ?? ????? ???? ???
???????????? ?? ????? ????????? ???????? ???? ?? ????, reCAPTCHA v3 0 ?? 1 ?? ??? ?? ????? ????? ???? ??, ???? 0 ?? ???? ?? ????? ??? ???? ??????? ?? ???????????? ???? ???, ?? 1 ?? ???? ?? ????? ???? ??????? ?? ????? ???? ???? ????????? ?? ????? ?? ????? ?? ????????? ???? ?? ??? ?? ???? ??? ?? ??????? ??????? ?? ????? ???? ?? ?? ?????? ???? ???
?? ?????? ?? reCAPTCHA v3 ?? ??? ?????
reCAPTCHA v2 ?? ??????, reCAPTCHA v3 ?????? ??? ?? ??????? ???? ?? ?? ??? ????? CAPTCHA ????????? ????????? ???? ?? ???? ??? ???????, reCAPTCHA ????? ??? ?? ?????? ?? ????????? ??? ????? ??? ???? ??? ????? ?? ???, ?????? ?? HTML ?? ???????? ???? ?? ?? ?????? ?? ???? ???? ?????? g-recaptcha
?? Google ?? CAPTCHA API ?? ?????? ????? ???
???? ????? ??? ?? ?? ?? reCAPTCHA v3 ?? ???????? ?? ????? ???? ?? ???? ???:
-
????? ?? ????????: ???? ???????? ??? ?????? ??? ????? (????? ?? ????-????? ???? ?? "?????????" ?????)? HTML ????? ??? ?????????? ?????:
html<script src="https://www.google.com/recaptcha/api.js" async defer></script>
-
???????? ??? ?????: ?? reCAPTCHA ?? ??? ????? ?? ??? ????????????? ??? ?? Selenium ?? ????? ?? ???? ???:
pythontry: driver.find_element(By.XPATH, "//script[contains(@src, 'recaptcha/api.js')]") print("reCAPTCHA v3 ?? ??? ???") except: print("??? reCAPTCHA ???? ????")
reCAPTCHA v3 ??????????? ?? ??? ?????? - CapSolver
?? ?? reCAPTCHA v3 ??????????? ???? ???? CAPTCHA ????????? ?? ?????? ???, ?? ???? ?? ????????? ????? ?? ???????? ???? ?? ?? ???? ??? ?? ??? ??? ??????? ??? ???? ??? ??????? ?? ????????? ?? ??????? ???? ??? ??? ?? ???? ???? ?? CapSolver ??? ???
???? ???
????? ?????? ???????? ?? ??? ???? ???? ??? ?????? ????; CapSolver: WEBS. ??? ????? ???? ?? ???, ???? ???????? ??????? ?? ??? 5% ?? ???????? ???? ??????, ?????????
??????????????
??? ????? ?? ????, ????????? ???? ?? ???? ??? ?????????? ???:
- ???????? (????????): ?? ???????? ???????? ?? ?????? ???? ?? ???? ?????????? ?????????? ??????? ?? ??? ???? ??? ??? ?? ???? ???
- ????? ???????: ????????? ???? ?? ???? ?????? ?? Python ??????? ??? ??? ????, ?? ??? ???????? ????? ??????? ?? ??????? ?????
- CapSolver API ?????: ???? ?? API ????? ?? ???????? ????, ???? CapSolver ???????? ?? ?? ???? ??????? ???? ??????? ???? ?? ???? ???
??? 1: ?????? ????? ??????? ????
reCAPTCHA v3 Enterprise ?? ?? ???? ?? ?????? ???? ?? ???, ???? CapSolver ????? ??????? ???? ????? ??? ??????? ???? ?? ??? ????? ????? ?? ????? ????:
bash
pip install capsolver
?? ????? ???? CapSolver API ?? ??? ???????? ???? ?? ?????? ???? ??, ???? ????? ??? ?? reCAPTCHA v3 Enterprise ???? ??????? CAPTCHA ????????? ?? ??????? ?? ??? ??????? ???? ??? ???
??? 2: reCAPTCHA v3 Enterprise ?? ?? ???? ?? ??? Python ??? (???????? ?? ???)
??? ?? ???????? ?? ????? ???? ?? ????? ??? ??? ???, ?? ???? ?? Python ????????? ?? ?? reCAPTCHA v3 Enterprise ?? ?? ???? ?? ?? 0.7 ?? 0.9 ?? ??? ???? ???? ????? ??????? ???? ?? ?????? ???? ??:
python
import capsolver
from urllib.parse import urlparse
# ?? ????? ?? ?????
PROXY = "http://username:password@ip:port"
capsolver.api_key = "YourApiKey"
PAGE_URL = ""
PAGE_KEY = ""
PAGE_ACTION = ""
def solve_recaptcha_v3_enterprise(url, key, pageAction):
solution = capsolver.solve({
"type": "ReCaptchaV3EnterpriseTask",
"websiteURL": url,
"websiteKey": key,
"pageAction": pageAction,
"proxy": PROXY
})
return solution
def main():
print("Solving reCAPTCHA v3 Enterprise...")
solution = solve_recaptcha_v3_enterprise(PAGE_URL, PAGE_KEY, PAGE_ACTION)
token = solution["gRecaptchaResponse"]
print("Solution Token: ", token)
if __name__ == "__main__":
main()
?? ?????????? ??
-
PROXY: ????????? ???? ?? ?? ???
http://username:password@ip:port
??????? ??? ???? ???????? ???????? ????? ?? ??? ???? ??? ?? ???????? ?? ????? ?? ??? ???, ?? ????????? ???? ?? ?? ????????? ?? ???? ??????? ?? ??? ??? ??????? ? ??? -
capsolver.api_key:
"YourApiKey"
?? ???? ???????? CapSolver API ????? ?? ?????? ?? ??? ???? CapSolver ???????? ??? ??? ?? ???? ??????? ?? ???? ???? -
PAGE_URL: reCAPTCHA v3 Enterprise ???? ??????? ?? URL ?? ??????
-
PAGE_KEY: ?? ??????? ?? reCAPTCHA ????? ??, ???? ???? ????? ?? ??????? ?????
-
PAGE_ACTION: reCAPTCHA ?????? ????????? ?? ?? ??? ??????? ??????? ?? ?? ???? ?? ?? ??? ???? ??? ??? ???? ???, ?? ??? ???? ????
??? 3: reCAPTCHA v3 ??????????? ?? ?? ???? (???? ???????? ??)
??? ?????? ??? ???? ?? ???????? ?? ????? ???? ?? ??? ???, ????????? ??? ??? ???? ????? ??? ?? ?? ?? ???? ???????? ?? reCAPTCHA v3 ??????????? ?? ???? ?? ?? ???? ???:
python
import capsolver
from urllib.parse import urlparse
# ?? ????? ?? ?????
capsolver.api_key = "YourApiKey"
PAGE_URL = ""
PAGE_KEY = ""
PAGE_ACTION = ""
def solve_recaptcha_v3_enterprise(url, key, pageAction):
solution = capsolver.solve({
"type": "ReCaptchaV3EnterpriseTaskProxyless",
"websiteURL": url,
"websiteKey": key,
"pageAction": pageAction
})
return solution
def main():
print("Solving reCAPTCHA v3 Enterprise...")
solution = solve_recaptcha_v3_enterprise(PAGE_URL, PAGE_KEY, PAGE_ACTION)
token = solution["gRecaptchaResponse"]
print("Solution Token: ", token)
if __name__ == "__main__":
main()
reCAPTCHA v3 ??????????? ?? ?? ???? ?? ??? ????????? ??????
-
???????? ?? ????? ????: ??? ?? ?? ?? IP ?? ?? ?????? ??? ??? ???, ?? ??? ?? ??? ??? ??????? ???? ?? ????? ?? ?? ???? ?? ??? ???????? ???????? ?? ????? ???? ?? ????? ?????
-
???? ???? ??????: reCAPTCHA v3 ?????????? ?? ??????? ?? ???? ?? ????? ?????? ???? ??? ???? ???? ????? ??????? ???? ?? ???? ????????? ?? ????? ????? ?? ???, ????????? ???? ?? ???? ???????? ?????? (?????, ???????, ????????) ???????? ???? ??????? ?? ??? ???? ??? ??????? ?? ??? ????????? ??????? ?? ????? ???? ?? ???? ??????? ???? ????????? ?? ???? ???
-
????? 0.7-0.9 ?? ??? ???????? ????: CapSolver reCAPTCHA v3 ?? ?? ???? ??? ???? ???? ????? 0.7 ?? 0.9 ?? ??? ?????? ???? ?? ??? ????? ??? ??? ?? ??? ?? ????? ?? ??? ???? ??????? ?? ???? ???????? ????, ???? ???? ??? ??????? ??????? ?? ???, ?? CapSolver ????? ????? ??????
???? ??????
??????? ????????: ?? ????? ?? ?????? ?? ?? ??????? ???? ????????? ?????????? ?? ??? ??? CapSolver ??? ???? ??????? ?? ???????? ?? ???? ???? ?? ??? ????????? ??? CapSolver ??????? ?? ????? ????, ???????? ?? ???????? ???? ???? ?????????? ?? ??? ???? ???? ?????? ?? ?? ???? ???? ?? ?????? ????? ?????? ?????? ?????????? ????? ?? ????? ????? ?? ???-??? ????????? ???? ???????? ?? ????? ?????? ????????? ?? ?? ???? ??? 100% ??????? ????????? ???? ???? ?? ???? ?????? ?? ????????? ????? ?? ??????????? ???? ???? ???? ??????? ?? ???, ????? ????? ???? ?? ?????? ?? ???????? ???? ?? ?????
????

???? ?? reCAPTCHA Enterprise ??????? ?? ?? ????, v2, v2 ??????, v3, v3 ?????????? 0.9 ?????
?????? ???? ???? ?? reCaptcha ??????? ?? CapSolver ?? ???: ?? ???? reCaptcha ?? ??????? ??? ?? ?? ???? ?? ??? ???-??-??? ?????????? ?????? ???? ??, ?? ??? ???? ?????? ????????? ???? ???

Rajinder Singh
11-Oct-2025

??????? ??2 ?????? ???? ?? ????
?? ????? reCaptcha v2 ?????? ?? ?? ???? ?? ???? ??? ?? ???????? ???? ??? ?? ?????? ??????? ?? Capsolver ?? ??? ???? ?? ???? ???????? ?? ?????? ???? ?? ?? ???-??-??? ???? ?????? ???? ??? ????? ?? ????? ?? ?????? ???? ??? ???? ????? ??? ??, ????? ???? ??????? ?? reCaptcha v2 ?????? ?? ???? ???? ?? ?? ???? ?? ????????? ??? ?? ???? ?? ???? ??? ?? ?? ???????? ?? ??????? ???? ??, ?? ????????? ???? ?? ?? ???? ?? ??? ???? ???? ????????? ?? ???? ??? ??????? ???? ???

Rajinder Singh
11-Oct-2025

reCaptcha v2 ???? ?? ????
?? ??? ??? ?? ???? ??????? ?? reCaptcha ???? ?? ?? CapSolver ?? ????? ???? reCaptcha v2 ?? ????? ?? ???? ?? ?????

Rajinder Singh
23-Sep-2025

reCaptcha v3 ?? ???? ?? ???? ?? ???? ???? (>0.7¨C0.9) ????? ??????? ????
Capsolver ?? ??? reCaptcha v3 ?? ??????? ??? ?? ?? ???? ?????? ?? ???? ????? ?? ???? ?????? ?? ?? ???? ?? ?? ??? ????? ???? ??, ????? ???? ????? ?? ?????? ??? ???????? ????????? ???? ??

Rajinder Singh
23-Sep-2025

2025 ??? ??? ?????????? ???? ??? ???? ????? reCAPTCHA v2 ?? v3 ?????? ???? ???
2025 ???, ????-??? ?????? ?? ????? ???????? ?? ???, ??? ???? ????????? ?? ??? ????????? reCAPTCHA ?????? ?????? ?????????? ?? ??? ???

Rajinder Singh
17-Jan-2025

2025 ??? AI ????? ?? ??? reCAPTCHA ?? ?? ????
AI ?????? reCAPTCHA ?? ?? ????, CapSolver ?? ???????? ?? 2025 ??? CAPTCHA ??????? ?? ?????? ???? ???????? ?? ???? ??? ??? ??, ???? ??? ??????

Rajinder Singh
11-Nov-2024