OP 23 May, 2021 - 02:29 PM
After I send the sitekey to 2captcha I get the token but how do I submit the token with selenium?
The ".challenge-forms" doesn't exist on that page, it automatically redirects you after solving the captcha.
Discord: 21#0001
Code:
let submitToken = (token) => {
document.querySelector('[name=g-recaptcha-response]').innerText = token
document.querySelector('[name=h-captcha-response]').innerText = token
document.querySelector('.challenge-form').submit()
} submitToken('TOKEN_STRING')
Discord: 21#0001
I AM BACK!