Dušan Panić
Dušan Panić
As this project is dead, is there any alternative?
I had similar issue. But my cron worked, and sudenly last night didnt' work. I am uploading backups to Synology NAS. I will investigate more, if this issue perrsist. However...
Mine is working as well. I logged in to the Synology NAS and switched off hard disk hibernation. I think that was the problem.
What is status of this? Do we have any news?
I have exactly the same problem. Did you you fixed?
It would be good to get complete object, with cipher, keyExchange ...
I have the same issue
You can start with this. ```css @page { size: A4; margin: 1.1em 0; } @media print { html, body { width: 210mm; font-size: 14px; } } ```
Similar example in NodeJS Puppeteer, works without any problems. ```Node.JS const puppeteer = require('puppeteer'); (async () => { try { const browser = await puppeteer.launch({ headless: true }); const page...
Thank you. I ended up with very simple function: ``` Go chromedp.ActionFunc(func(ctx context.Context) error { c, cancel := context.WithTimeout(ctx, r.HTTPTimeout) defer cancel() chromedp.Run(c, chromedp.Navigate(r.Address), ) return nil }), ```