14.4 ¿Qué es Playwright?
npm i -D playwrightdotnet tool install --global Microsoft.Playwright.CLIEjemplo
const { webkit } = require('playwright');
(async () => {
const browser = await webkit.launch();
const page = await browser.newPage();
await page.goto('http://www.google.com');
await page.screenshot({ path: `example.png` });
await browser.close();
})();Generar scripts

Ventajas y Desventajas
Last updated