Skip to content

Instantly share code, notes, and snippets.

@ycabon
ycabon / index.js
Last active October 9, 2018 21:40
Using Puppeter with MapView
const puppeteer = require('puppeteer');
const viewport = {
width: 1920,
height: 1080
}
async function testPage(name, url) {
const browser = await puppeteer.launch();
const page = await browser.newPage();