Files
vscode-workbench/login-templates/v4-showcase/screenshot4.js
T

1 line
525 B
JavaScript

const pw=require("playwright");(async()=>{const b=await pw.chromium.launch();const pg=await b.newPage();await pg.setViewportSize({width:1440,height:900});await pg.goto("http://localhost:3333");await pg.waitForTimeout(2000);for(const t of["A","B","C","D","E"]){await pg.evaluate((x)=>{sw(x);document.body.offsetHeight},t);await pg.waitForTimeout(1000);await pg.screenshot({path:"login-templates/v4-showcase/preview-"+t+".png",fullPage:false});console.log(t+" done")}await b.close()})().catch(e=>console.log("err:",e.message));