79150314

Date: 2024-11-02 09:12:44
Score: 1.5
Natty:
Report link

Use puppeteer-extra-plugin-stealth. Note that you will need to use puppeteer-extra rather than just puppeteer for this to work. Found this solution through this article.

const puppeteer = require('puppeteer-extra');
const StealthPlugin = require('puppeteer-extra-plugin-stealth');
puppeteer.use(StealthPlugin());
Reasons:
  • Blacklisted phrase (1): this article
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: lefrost