> ## Documentation Index
> Fetch the complete documentation index at: https://momentic.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# momentic-mobile install-browsers

> Deprecated. Mobile tests do not need a local browser.

<Warning>
  This command is deprecated. Mobile tests automate webviews on the device or
  emulator, so no local browser is needed. The command stays available for
  backward compatibility.
</Warning>

Downloads Chromium-based browsers onto the local machine.

```bash theme={null}
npx momentic-mobile install-browsers chromium
```

## Arguments

<ParamField path="[browsers...]" type="array">
  Browsers to install, separated by spaces. Available choices: `chromium`,
  `chrome`, and `chrome-for-testing`.
</ParamField>

## Options

<ParamField path="-f, --force" type="boolean">
  Reinstall the specified browsers even if they already exist on disk.
</ParamField>

<ParamField path="-a, --all" type="boolean">
  Install every supported browser (`chromium`, `chrome`, and
  `chrome-for-testing`).
</ParamField>

## Examples

Install the Chromium browser:

```bash theme={null}
npx momentic-mobile install-browsers chromium
```

Install every supported browser at once:

```bash theme={null}
npx momentic-mobile install-browsers --all
```

Reinstall Chromium:

```bash theme={null}
npx momentic-mobile install-browsers chromium --force
```
