chromium opens in small window code example
Example: chromium opens in small window
const browser = await puppeteer.launch({
headless: false,
args: [
"--start-maximized" // Start Full Screen
]
});
const browser = await puppeteer.launch({
headless: false,
args: [
"--start-maximized" // Start Full Screen
]
});