Relative Content

Tag Archive for javascriptpuppeteer

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, […]

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?