---
title: Cross Browser Testing with Cypress
description: How to specify on which browsers & platforms you want to run Cypress
  Tests.
source_url:
  html: https://testingbot.com/support/web-automate/cypress/capabilities
  md: https://testingbot.com/support/web-automate/cypress/capabilities.md
---

# Browsers & Platforms

TestingBot allows you to run your Cypress tests on hundreds of browser & platform combinations.

You can use the `browsers` field in the `testingbot.json` file to indicate on which browsers & platforms you want to run your Cypress tests:

 key | value | possible values || platform | The Operating System (OS) you want to run the tests on. | `WIN11`, `WIN10`, `TAHOE`, `SEQUOIA`, `VENTURA` and `MONTEREY` |
| browserName | The browser you want to run the tests on. | `chrome`, `firefox` and `microsoftedge` |
| version | The version of the browser | **Chrome:** version `70` to `latest` **Firefox:** version `70` to `latest` **Edge:** version `80` to `latest` **(WIN10 only)** |

## Example Configuration

Please see the example below on how to specify multiple browsers:

```json
{
     ...
     "browsers": [
	    {
	        "browserName": "chrome",
	        "platform": "VENTURA",
	        "version": "latest"
	    },
	    {
	        "browserName": "chrome",
	        "platform": "WIN10",
	        "version": "latest"
	    },
	    {
	        "browserName": "firefox",
	        "platform": "MONTEREY",
	        "version": "latest-1"
	    }
    ],
    ...
}
```

You can use `latest` or `latest-X` to always test on the latest versions, or specify a specific browser version.

### Looking for more help?

Have questions or need more information? Reach out via email or Slack.

[Email us](https://testingbot.com/contact/new) [Join our Slack](https://join.slack.com/t/testingb0t/shared_invite/zt-3bcw9xch-jk19~6XPs_xBrsAgAedkCw)
