OP 16 June, 2021 - 03:30 PM
Hello, me and my friend are developing a program and need to submit a invisible hcaptcha request callback, how would be do that?
We currently have this working code
driver.execute_script("""
let [captcha] = arguments
var rep=document.getElementsByName("h-captcha-response"); rep[0].innerHTML=arguments[0]
var rep=document.getElementsByName("g-recaptcha-response"); rep[0].innerHTML=arguments[0]
""", code)
The part where my buddy is failing at is submitting the hcaptcha because there's no button to actually submit it.
Can someone help, it is much needed right now.
We currently have this working code
driver.execute_script("""
let [captcha] = arguments
var rep=document.getElementsByName("h-captcha-response"); rep[0].innerHTML=arguments[0]
var rep=document.getElementsByName("g-recaptcha-response"); rep[0].innerHTML=arguments[0]
""", code)
The part where my buddy is failing at is submitting the hcaptcha because there's no button to actually submit it.
Can someone help, it is much needed right now.