Chee Aun

Results 131 comments of Chee Aun

@nevir I've tried it, seems to crash Mobile Safari on my iPhone 4S when I tap on the status bar. I've modified the fiddle a little to prevent viewport scaling...

@cpojer would need to see a demo page :)

Would be cool if you could submit a PR :smile:

Is this a JS library or a service?

Perhaps can put another entry in `Self-hosted services` section? 🤔

Hmm this seems to be an error on hCaptcha's side. Maybe you could try again in next few hours 🙏

I guess there are two workarounds: 1. Tweak the [`waitUntil`](https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagegotourl-options) to use `networkidle` (newer `Puppeteer` uses `networkidle0` or `networkidle2`. 2. Use [`waitFor`](https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagewaitforselectororfunctionortimeout-options-args) to wait for information/elements to appear.

Currently `puppetron` doesn't generate retina screenshots. It's on purpose because the large screenshots seems to crash the chrome instance which I haven't figure out how to fix. If you use...

Puppeteer is a low-level JavaScript library to control headless Chrome with specific API methods. Puppetron *uses* Puppeteer and provides a web interface to demonstrate some of its features. So by...

Ah okay you're right, if you need URLs with non-80 port to work. It will need an extra [`port`](https://nodejs.org/api/url.html#url_url_port). Is it possible for you to open a PR?