[GUIDE] Unlock the Power of Stealth Fingerprinting Automation with Puppeteer/Playwright (Node.js)

const { plugin } = require('puppeteer-with-fingerprints');

// Sleep function to make things easier
function timeSleep(seconds) {
var timeToSleep = seconds * 1000
return new Promise((resolve) => setTimeout(resolve, timeToSleep));
};

(async () => {
const fingerprint = await plugin.fetch('', {
tags: ['Windows', 'Chrome'],
})

plugin.useFingerprint(fingerprint);

const browser = await plugin.launch();
const page = await browser.newPage();

await page.goto('https://antcpt.com/score_detector/');
await timeSleep(5);
await page.screenshot({path: 'detect.png', fullPage: true});
await timeSleep(1000);
})();
Tried using this method, but I’m getting a 0.4 captcha score...
 
Tried using this method, but I’m getting a 0.4 captcha score...

const { plugin } = require('puppeteer-with-fingerprints');

// Sleep function to make things easier
function timeSleep(seconds) {
var timeToSleep = seconds * 1000
return new Promise((resolve) => setTimeout(resolve, timeToSleep));
};

(async () => {
const fingerprint = await plugin.fetch('', {
tags: ['Windows', 'Chrome'],
})

plugin.useFingerprint(fingerprint);

const browser = await plugin.launch();
const page = await browser.newPage();

await page.goto('https://antcpt.com/score_detector/');
await timeSleep(5);
await page.screenshot({path: 'detect.png', fullPage: true});
await timeSleep(1000);
})();

Could it be because it’s the free version?
 
Similar threads Most view View more
Back
Top Bottom