Anchor Browser supports downloading files during your browser sessions.

The following examples demonstrate how to download a file and retrieve it from the browser session.

1

Create a browser session

Use the create session API to create a new browser session.

2

Browse and download a file

Use the following example to perform a file download

await page.goto("https://browser-tests-alpha.vercel.app/api/download-test");

await Promise.all([page.waitForEvent("download"), page.locator("#download").click()]); // The download has completed
3

Fetch the file from the browser session

You can retrieve the downloaded file from the browser session using the get session downloads API