Playwright error

Error: net::ERR_ABORTED

The navigation was cancelled, either by a second navigation racing the first, or because the URL triggers a download instead of a page load.

Why this happens

How to fix it

  1. Avoid triggering a navigation twice in quick succession, and don't race a test-side `goto()` against an app-side redirect
  2. For downloadable resources, use `page.waitForEvent('download')` instead of `page.goto()`