Puppeteer: Page.navigate limit reached
// website_adder.js import puppeteer from “puppeteer-core”; import fs from ‘fs’; async function addWebsites() { let browser; try { console.log(“Starting function”); const auth = ‘***’; browser = await puppeteer.connect({ browserWSEndpoint: `wss://${auth}@***` }); // Read the JSON file with the list of doctors const data = fs.readFileSync(‘uniqueDoctorsData.json’, ‘utf-8’); const doctorsData = JSON.parse(data); // Iterate through each doctor, […]
puppeteer launch args ‘–disable-features=SameSiteByDefaultCookies,CookiesWithoutSameSiteMustBeSecure’ not working
below is my launch config
How to fix the error “Error: Failed to launch the browser process!” that occured when ran javascript file written with “Puppeteer”
pup.js:
Is there a way to remove tips from chromium?
I am using puppeteer and chromium. When upgrading from an older version I am seeing these tips shown every time I launch browser which may interfere with what I am working on. Is there a launch option or other configuration to disable these?