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

22 lines
683 B
JavaScript

const playwright = require("playwright");
async function main() {
// NOTE: Unhandled promise rejection terminates Node.js process with non-zero exit code.
process.on("unhandledRejection", (event) => {
throw event;
});
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: `screenshots/${
process.env.PLAYWRIGHT_RUNNER || "example"
}-${browserType}.png`,
});
await browser.close();
}
}
main();