You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In playwright 1.55.0 I kept getting error about file page() and file downloading, like:
playwright._impl._errors.Error: Page.goto: Download is starting
Call log:
navigating to "http://localhost:8081/something.docx", waiting until "networkidle"
Whereas playwright 1.54.0 was working fine with scrapy-playwright. Even without accept-downloads: True.
Downgrading to playwright 1.54.0 allowed me to access these files like regular scrapy response and use response.body to get the content instead of getting the exception.
Something must of changed in playwright 1.55.0 that doesn't let playwright-scrapy handle files that want to be downloadable like it did before.