简体   繁体   中英

Puppeteer Chromium can't browse

I have a node app to evaluate a web page. It was working fine until I changed the computer. After reinstalling, Puppeteer can't find any page, getting this message:

RESULT_CODE_NORMAL_EXIT_EXP3
async function Prueba() {
const Apify = require('apify');
Apify.main(async () => {
    puppeteer=require('puppeteer')
    const browser = await puppeteer.launch({
        ignoreDefaultArgs: ['--disable-extensions'],  headless: false 
      });
    const page = await browser.newPage();
    
    await page.goto("https://www.smoreno.com.ar");
})

Use the --no-sandbox argument:

const browser = await puppeteer.launch({
    ignoreDefaultArgs: ['--disable-extensions'],
    headless: false,
    args: ['--no-sandbox'],
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM