NopeCHALLC / nopecha-extension

Automated CAPTCHA solver for your browser. Works with Selenium, Puppeteer, Playwright, and more.
MIT License
6.39k stars 95 forks source link

[Bug] Cloudflare not solving turnstile #57

Open Newcool1230 opened 2 months ago

Newcool1230 commented 2 months ago

I saw the update for the cloudflare turnstile https://github.com/NopeCHALLC/nopecha-extension/releases/tag/0.4.12 but it still doesn't seem to be working for me. (On the latest firefox version https://addons.mozilla.org/en-US/firefox/addon/noptcha/)

It just stays unchecked like this

firefox_2F2OfkxBEy

Am I doing this wrong? The settings seems to be correct. s802eJrHR9

subradrad commented 2 months ago

I have the same issue on chrome for Cloudflare turnstile from 7/11/2024

nimbus2332 commented 2 months ago

I have the same issue on chrome

AYOUBZER commented 2 months ago

I have the same issue on chrome

nimbus2332 commented 2 months ago

When will it be fixed? I tried to simulate a click through JS, but it didn't work, ChatGPT says that the code doesn't work because the iframe is loaded from another domain. Such as security, etc.

function handleVerification() { let iframe = document.querySelector('iframe[title*="Cloudflare"]'); if (iframe) { setTimeout(() => { document.body.appendChild(iframe); let doc = iframe.contentWindow.document; let checkbox = doc.querySelector('input[type="checkbox"]'); if (checkbox) { checkbox.click(); setTimeout(() => { }, 4000); } }, 3000); } else { }

setTimeout(() => {
    let confirmInput = document.querySelector('input[value*="Verify"]');
    if (confirmInput) {
        confirmInput.click();
        setTimeout(() => {
        }, 3000);
    }
}, 7000); 

}

handleVerification();

Le0Developer commented 2 months ago

If it was that simple, it'd be fixed already.