---
title: Selenium IDE - Run .SIDE files on several browsers
description: Record and run Selenium tests with Selenium IDE on several browsers and
  mobile devices in the cloud.
source_url:
  html: https://testingbot.com/support/web-automate/selenium/ide
  md: https://testingbot.com/support/web-automate/selenium/ide/index.md
---
# Selenium IDE

Selenium IDE is a [Chrome addon](https://chrome.google.com/webstore/detail/selenium-ide/mooikfkahbdckldjjndioackbalphokd) / [Firefox addon](https://www.selenium.dev/selenium-ide/) which you can install to record and run browser tests.   
 Once you've installed the plugin, you can record an entire flow from your own browser.   
 You can record every interaction you do on a website and add assertions in your test.

## What can Selenium IDE do for me?

Here's one example: you can record yourself clicking through various pages on your website.   
 During this recording, you can right click various elements and indicate that these need to be present, or contain a specific value.

 ![Selenium IDE screenshot](https://testingbot.com/assets/wizard/ide-2e7510cfbc2b24f20c4483cb4045179fdf5036cdb391ae72ad470f8f360a3a18.jpg)

Once you've finished this recording, you can choose to instantly playback the recording.   
 The IDE will mimic your recorded behavior together with the assertions you've recorded.

## TestingBot integration with Selenium IDE

When you finished recording a test, you can choose to save the test from the Selenium IDE.   
 The saved file (with a `.side` extension) can be uploaded into [our TestLab](https://testingbot.com/support/web-automate/codeless-automation/add-test).

In our TestLab, you can indicate on which browsers and platforms the test needs to run.   
 You can schedule tests and indicate if you would like to be alerted when a test fails.

## Advanced: Selenium SIDE runner with TestingBot

It's possible to run tests recorded with Selenium IDE via the [selenium-side-runner](https://github.com/SeleniumHQ/selenium-ide/tree/v3/packages/selenium-side-runner) commandline program on TestingBot.

Simply save a recorded test as a `.side` file and run it like this:

    npm install -g selenium-side-runner
    selenium-side-runner --server https://key:secret@hub.testingbot.com/wd/hub -c "browserName=chrome platformName=WIN11 browserVersion=latest" *.side

### Looking for more help?

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

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