Open Newcool1230 opened 4 months ago
I have the same issue on chrome for Cloudflare turnstile from 7/11/2024
I have the same issue on chrome
I have the same issue on chrome
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();
If it was that simple, it'd be fixed already.
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
Am I doing this wrong? The settings seems to be correct.