mateusriff / automated-gmail-generator

Automate the creation of a Gmail account with Puppeteer
1 stars 1 forks source link

Workaround... #3

Open CrytoxsDiscord opened 6 months ago

CrytoxsDiscord commented 6 months ago

Making headless undetectable is a solution, works for me.

mateusriff commented 6 months ago

That's good to hear! Could you elaborate, though? Would installing puppeteer-extra and puppeteer-extra-plugin-stealth and using them like so work?

// at GmailSignIn.mjs

import puppeteerExtra from 'puppeteer-extra';
import StealthPlugin from 'puppeteer-extra-plugin-stealth';

puppeteerExtra.use(StealthPlugin());

I'm asking because (1) I can't test it at the moment and (2) I remember trying something very similar to no avail when I made this project. Also, thanks for contributing!

CrytoxsDiscord commented 6 months ago

I used stealth and randomised the UA, as gmail logs everything.