You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To run headless Chrome on Travis, you must call [puppetteer.]launch() with flags to disable Chrome's sandbox, like so: const browser = await puppeteer.launch({args: ['--no-sandbox']});
So we could try this solution if only we could pass arbitrary arguments to puppeteer.launch(). Help !
With the older PhantomJS-based version, we were able to set the viewport size by passing something like:
Is it possible to expose viewport size as an option to Puppeteer? Or maybe just allow us to pass arbitrary arguments to
puppeteer.launch()
?The text was updated successfully, but these errors were encountered: