anycaptcha.com
Search
K

Bypass HCaptcha/FunCaptcha Callback with Extension

Bypass HCAPTCHA/FunCAPTCHA Callback using selenium (invisible - without submit button)
Step 1: You need to install the AnyCaptcha Callback Hooker extension
Download extension:
Extension install instruction
After successful installation, you will see the extension at chrome://extensions/
Step 2: Go to the URL where you need to bypass hcaptcha/funcaptcha callback
Step 3: Find and switch to iframe which contain button with id = anycaptchaSolveButton (anycaptchaSolvingButton will automatically be created as soon as hcaptcha/funcaptcha callback finishes rendering)
anycaptchaSolvingButton will automatically be created as soon as hcaptcha/funcaptcha callback finishes rendering.
Note, in some cases where the chrome dev tool's search feature finds anycaptchaSolveButton but doesn't focus on it (because it's rendered in an iframe), you need to find that iframe. We are sure that anycaptchaSolveButton has been created and is located somewhere in the elements. You have to find it.
Step 4: Use AnyCaptcha - HCaptcha or FunCAPTCHA to get the response token
Step 5: Execute the following javascript command to submit the token
document.getElementById('anycaptchaSolveButton').onclick('TOKEN_FROM_STEP_4');
IMPORTANT!!!!! if anycaptchaSolveButton is in an iframe, you need to execute the above javascript command inside that iframe (Switch to iframe)

Example for FunCAPTCHA

Tutorial

Example for HCAPTCHA