Steve Tung
Steve Tung
As far as using new features in Chromium (new or future), I'm currently keeping the `timesnap` dependency of `puppeteer` to version 2.1, which installs Chromium 80.0.3987.0, because subsequent versions seem...
An inelegant approach is to use the undocumented configurations [`config.browser`](https://github.com/tungs/timesnap/blob/d416828bf58f0d8dd7e73642e6fd98d71bd7d2fd/index.js#L109) or [`config.launcher`](https://github.com/tungs/timesnap/blob/d416828bf58f0d8dd7e73642e6fd98d71bd7d2fd/index.js#L111) with a configured puppeteer browser with custom [launch options](https://github.com/puppeteer/puppeteer/blob/v2.1.1/docs/api.md#puppeteerlaunchoptions) to set the timeout. ### config.browser For Example: ```...
Hi @DariusLLL, thanks for filing this. I took a quick look at it, and it does look like the library you're using is adding a video element to the page,...
Hi @andreastepel, thanks for this question! It's good to know about the different use cases. As you pointed out, timecut installs timesnap, which installs puppeteer, which installs Chromium, and that...
Hi @andreastepel, as previously discussed, I just published [`timesnap-core`](https://github.com/tungs/timesnap/tree/core) and [`timecut-core`](https://github.com/timecut/tree/core), which doesn't include the puppeteer dependencies. You can use it by via: `npm install timecut-core --save` And then in...
Hi, thanks for filing this! I tried to recreate this, but I got the intended resolution. What operating system and version of node are you running? Thanks!
Thanks for the detailed information! It sounds like it might be a way that the Windows version is parsing the viewport arguments. Unfortunately, I don't have a Windows machine to...
Thanks for the update! It's good to know about this potential issue with Windows and your fix for it.
Thanks for the detailed report @mccahan! It looks like the error likely stems from getting the browser frames (which includes iframes) only once, instead of per time iteration on the...
Following up on this, getting the browser frames every capture doesn't seem to work. I'll look into this further.