> ## 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

> Install browser executables for Android webview automation.

Downloads Chromium-based browsers used to automate Android webviews during test
runs. `chromium` is required for webview automation; the other options are
available for parity with the web CLI.

```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 required to automate Android webviews:

```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 after a broken upgrade:

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