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 badges2 Answers
Reset to default 8Problem
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();
};