1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/playwright/main.js

18 lines
519 B
JavaScript
Raw Normal View History

2020-07-27 19:31:57 +09:00
const playwright = require("playwright");
async function main() {
for (const browserType of ["chromium", "firefox", "webkit"]) {
const browser = await playwright[browserType].launch();
const context = await browser.newContext();
const page = await context.newPage();
await page.goto("http://whatsmyuseragent.org/");
await page.screenshot({
path: `screenshot/${
process.env.PLAYWRIGHT_RUNNER || "example"
}-${browserType}.png`,
});
await browser.close();
}
}
main();