最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Node JS Puppeteer headful Browser doesnt launch - Stack Overflow

programmeradmin1浏览0评论

I'm playing around with puppeteer to learn a bit about automation in the browser. I wanted to open the chromium browser visable so not in headless. I set the launch option to false, but it's still not opening Chromium.

I tried to use no sandbox args, i did even deflag the --disable-extensions in the args, but nothing helped..

There are no errors in the terminal, it just doesn't launch.

Here is my code:

const puppeteer = require ("puppeteer");

async () => {
  const browser = await puppeteer.launch({ headless: false });
  const page = browser.newPage();
  await page.goto("");

  await browser.close();
};

Any idea why chromium is not opening? Also there are no logs about errors...

I'm playing around with puppeteer to learn a bit about automation in the browser. I wanted to open the chromium browser visable so not in headless. I set the launch option to false, but it's still not opening Chromium.

I tried to use no sandbox args, i did even deflag the --disable-extensions in the args, but nothing helped..

There are no errors in the terminal, it just doesn't launch.

Here is my code:

const puppeteer = require ("puppeteer");

async () => {
  const browser = await puppeteer.launch({ headless: false });
  const page = browser.newPage();
  await page.goto("https://google.de");

  await browser.close();
};

Any idea why chromium is not opening? Also there are no logs about errors...

Share Improve this question edited May 1, 2020 at 12:49 Thomas Dondorf 25.3k6 gold badges96 silver badges112 bronze badges asked May 1, 2020 at 9:34 wernerwernerwerner888wernerwernerwerner888 351 silver badge4 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

Problem

You are not calling the function, you are just defining it via async () => { ... }. This is why you are not getting any errors, as the function is not executed. In addition, as the other answer already said, you are missing an await.

Solution

Your code should look like this:

(async () => {
  const browser = await puppeteer.launch({ headless: false });
  const page = await browser.newPage(); // missing await
  await page.goto("https://google.de");

  await browser.close();
})(); // Here, we actually call the function

newPage() returns a promise so you should await it

const puppeteer = require ("puppeteer");

async () => {
const browser = await puppeteer.launch({ headless: false });
const page = await browser.newPage();
await page.goto("https://google.de");

await browser.close();
};
发布评论

评论列表(0)

  1. 暂无评论