-
-
Save usingthesystem/ad467739f5f30e11877a0245509c08ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const puppeteer = require('puppeteer'); | |
//const mkdirp = require('mkdirp'); | |
const fs = require('file-system'); | |
// Put your custom dimension and name Here | |
const devices = [ | |
{ name: 'Highest', width: 1920, height: 1080 }, | |
{ name: 'Laptop-1', width: 1366, height: 768 }, | |
{ name: 'Laptop-2', width: 1360, height: 768 }, | |
{ name: 'Small-Desktop-1', width: 1280, height: 800 }, | |
{ name: 'Small-Desktop--2', width: 1024, height: 768 }, | |
{ name: 'Ipad-Tab', width: 768, height: 1024 }, | |
{ name: 'Android', width: 360, height: 640 }, | |
{ name: 'Iphone', width: 375, height: 667 }, | |
]; | |
// Enter URL which will be captured | |
const urls = [ | |
{ name: 'Google', link: 'https://www.google.com' }, | |
{ name: 'Twitter', link: 'https://www.twitter.com' }, | |
{ name: 'Facebook', link: 'https://www.facebook.com' }, | |
{ name: 'Third Rock Techkno', link: 'https://www.thirdrocktechkno.com'}]; | |
async function setViewports(device, url) { | |
const browser = await puppeteer.launch(); | |
const page = await browser.newPage(); | |
await page.waitFor(500); | |
await page.goto(url.link); | |
// Setting-up viewports | |
await page.setViewport({ | |
width : device.width, | |
height: device.height | |
}); | |
await getScreenshots(device, url, page, browser); | |
} | |
// Directory Create if not exist | |
async function getScreenshots(device, url, page, browser) { | |
var new_location = device.name+`(`+ device.width+`-`+device.height +`)`; | |
fs.mkdir(new_location, function (err) { | |
if (err) { //console.log(err) | |
} | |
}); | |
await page.screenshot({ | |
path: new_location +`/`+ url.name + `.png`, | |
fullPage: true | |
}); | |
browser.close(); | |
} | |
async function getUrlAndResolutions(devices, urls) { | |
for (let device of devices) { | |
for (let url of urls) { | |
await setViewports(device, url); | |
} | |
} | |
} | |
getUrlAndResolutions(devices, urls); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment