Search code examples
node.jsplaywright

Playwright downloads weird file


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


Solution

  • Try this:

    const [ download ] = await Promise.all([
        page.waitForEvent('download'),
        page.click('text=Descargar para Windows')
    ]);
    
    await download.saveAs('filename.abc');