site-scan icon indicating copy to clipboard operation
site-scan copied to clipboard

CLI for capturing website screenshots, powered by puppeteer.

Results 5 site-scan issues
Sort by recently updated
recently updated
newest added

just wondering if you could shed some light why your tool is failing on this particular website it works on every other site I've tried.. just this one fails but...

lib/site-scan.js // Take the screenshot try { await page.screenshot({ path: `${options.path}${fileName}.png`, fullPage: options.full, omitBackground: options.transparent, type: options.jpeg ? 'jpeg' : 'png', quality: options.quality }); } catch(e) { console.log(chalk`{red • Error...

Hi Chris, I noticed that some of the screenshots taken with your great script do not load flash automatically and show a placeholder instead. I installed both puppeteer extra and...

Hi Chris, I updated the package but now I get the following error: Your environment has been set up for using Node.js 10.8.0 (x64) and npm. C:\Users\Fabio>ss --sleep 1 --path...

Is there a way to inject puppeteer code through the CLI? For example I would like to use this: `waitUntil: 'domcontentloaded'` as some of my dev sites I use this...