Skip to content

Instantly share code, notes, and snippets.

View bmikkelsen22's full-sized avatar

Brooks Mikkelsen bmikkelsen22

  • Portland, OR
View GitHub Profile
import * as Chrome from 'chrome-debugging-client';
import { DOM, Emulation, Network, Page, Runtime, DOMSnapshot } from 'chrome-debugging-client/dist/protocol/tot';
import * as fs from 'fs';
const pageWidth = 640;
async function takeScreenshot(session: Chrome.ISession) {
const process = await session.spawnBrowser('exact', {
additionalArguments: ['--headless', '--hide-scrollbars', '--disable-gpu'],
windowSize: { width: pageWidth, height: 1000 },