GoogleChromeLabs / carlo

Web rendering surface for Node applications
Apache License 2.0
9.32k stars 309 forks source link

Launch in fullscreen #144

Closed skhaz closed 5 years ago

skhaz commented 5 years ago

How to launch in fullscreen mode?

Airkro commented 5 years ago
const app = await carlo.launch(...);
const window = app.mainWindow();
await window.fullscreen();