Greasy Fork is available in English.

Autopass Cloudflare CAPTCHA

Violentmonkey Scripts

< Σχολιασμός για τον κώδικα Autopass Cloudflare CAPTCHA

Αναφορά: Εντάξει - ο κώδικας λειτουργεί αλλά έχει σφάλματα

§
Δημοσιεύτηκε: 21/03/2024

async function VerifyYouAreHuman_02() {
let dom = await global_module.waitForElement("input[type='checkbox']", null, null, 200, -1);
global_module.clickElement($(dom).eq(0)[0]);
dom = await global_module.waitForElement("span[class='mark']", null, null, 200, -1);
global_module.clickElement($(dom).eq(0)[0]);
}

now fail to click checkbox , always reload CAPTCHA

let dom = await global_module.waitForElement("input[type='checkbox']", null, null, 200, -1);
global_module.clickElement($(dom).eq(0)[1]);

bypass checkbox click for work

§
Δημοσιεύτηκε: 22/03/2024

let dom = await global_module.waitForElement("input[value='Verify you are human'][type='button']", null, null, 200, -1);
global_module.clickElement($(dom).eq(0)[0]);

no work too

Δημοσίευση απάντησης

Συνδεθείτε για να δημοσιεύσετε μια απάντηση.