docs: document dbus in the docker guide (#12378)

This commit is contained in:
Alex Rudenko
2024-05-02 10:02:12 +02:00
committed by GitHub
parent dfb31f3e92
commit 533f83af5a
2 changed files with 17 additions and 1 deletions

View File

@@ -6,7 +6,9 @@
const puppeteer = require('puppeteer');
(async () => {
const browser = await puppeteer.launch();
const browser = await puppeteer.launch({
dumpio: true,
});
const page = await browser.newPage();
await page.goto('https://example.com');
await browser.close();