We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To Reproduce
const fingerprintGenerator = new FingerprintGenerator(); const fingerprintWithHeaders = fingerprintGenerator.getFingerprint({ locales: ['en', 'en-US'], devices: ['desktop'], browsers: [ { name: 'chrome', minVersion: 98, maxVersion: 105 }, { name: 'firefox', minVersion: 98, maxVersion: 105 } ], operatingSystems: ['windows'], screen: { minWidth: 800, maxWidth: 1920, minHeight: 600, maxHeight: 1200, }, }); const pptr = await puppeteer.launch({ headless: false, ignoreDefaultArgs: [ "--enable-automation", ], args: [ "--lang=en-US,en", "--proxy-server=http://localhost:7890", "--disable-infobars", "--start-maximized", "--disable-blink-features=AutomationControlled", // "--disable-site-isolation-trials", // "--disable-features=IsolateOrigins,site-per-process,SitePerProcess", ], executablePath: executablePath() }); const page = await pptr.newPage(); const fingerprintInjector = new FingerprintInjector(); fingerprintInjector.attachFingerprintToPuppeteer(page, fingerprintWithHeaders); await page.goto('https://nowsecure.nl/');
When I uncomment this two flags, the checkbox appears again.
"--disable-site-isolation-trials", "--disable-features=IsolateOrigins,site-per-process,SitePerProcess",
The text was updated successfully, but these errors were encountered:
The site adds a frame in page. As following:
I think it's may this problem. But I don't know how to fix it. Are there any suggestions?
Sorry, something went wrong.
If I want to inject my own codes, how should I do?
I'm facing the same problem the Cloudflare iframe detects that i run automation
barjin
No branches or pull requests
To Reproduce
When I uncomment this two flags, the checkbox appears again.
The text was updated successfully, but these errors were encountered: