Ok so, right now I can\'t really afford to pay for any service. I want to be able to take screenshots using my rented server, which is Linux based, and output them on the sc
One of the solutions in 2017:
https://github.com/GoogleChrome/puppeteer
example:
const puppeteer = require('puppeteer');
(async() => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('https://example.com');
await page.screenshot({path: 'example.png'});
browser.close();
})();