Features

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. WIN10, BIGSUR, CATALINA and MOJAVE
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:

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

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