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

1 line
499 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)},t);await pg.waitForTimeout(1500);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));