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

1 line
748 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(800);await pg.evaluate(()=>window.scrollTo(0,0));await pg.waitForTimeout(200);const dim=await pg.evaluate(()=>{const g=document.querySelector(".gp.show");return g?{w:g.offsetWidth,h:g.offsetHeight}:null});console.log(t+": "+JSON.stringify(dim));await pg.screenshot({path:"login-templates/v4-showcase/preview-"+t+".png",fullPage:false});console.log(t+" screenshot done")}await b.close()})().catch(e=>console.log("err:",e.message));