I'm using playwright to download some file but whatever i try to download playwright is downloading this:
Is the third time i get this error and i dont know what it is...
This is the code and what i get using
npx playwright codegen https://signup.euw.leagueoflegends.com/es/signup/redownload
CodePudding user response:
Try this:
const [ download ] = await Promise.all([
page.waitForEvent('download'),
page.click('text=Descargar para Windows')
]);
await download.saveAs('filename.abc');