Home > front end >  Playwright downloads weird file
Playwright downloads weird file

Time:01-28

I'm using playwright to download some file but whatever i try to download playwright is downloading this:

Download

Is the third time i get this error and i dont know what it is...

browser

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');
  •  Tags:  
  • Related