Anchor Browser allows you to upload files during your browser sessions, enabling you to interact with web applications/forms that require files as input.

The following examples demonstrate how to upload a file, either from your local development environment or one downloaded during the browser session.

Using a local file

Playwright example

await page.goto('https://browser-tests-alpha.vercel.app/api/upload-test')

const input = await page.$("#fileUpload")

await input.setInputFiles('/tmp/my-files/google.png'); // Reference the local file path

Using a file downloaded during the session

After performing a file download, you can use the downloaded file for file uploads. To do that, reference the downloaded file path in the file upload input.

Playwright example

await page.goto('https://browser-tests-alpha.vercel.app/api/upload-test')

const input = await page.$("#fileUpload")

await input.setInputFiles('downloads/google.png'); // Use the downloaded file path