Record videos of your Selenium tests

By Jochen D.

When a Selenium test fails, you usually get a clear error message or trace to indicate where the problem is located. A video of your Selenium test will offer even more help in finding out just why your Selenium test failed. By video-recording your Selenium test, you can track down when and where a problem occurs.


At TestingBot video record every Selenium test on our grid. When a test fails, you can log into our member area, click the failed test and see a video of your test. This video is also available through our API, so you can easily integrate this feature into your Continuous Integration system.


Together with a video, we also take a full-screen screenshot of every single step in your test. This provides for another method to examine your tests. These screenshots are available in our member area or by accessing our API.


It's important to note that video recording your test does not slow down the execution of your test. We use the Windows built-in screen recording capabilities, which uses very little CPU.


The video is recorded into a MP4 file.

Below is a Ruby code example of running a test and grabbing the video and screenshots from our API.

Copy code
require "rubygems"
gem "selenium-client"
require "selenium/client"
gem 'test-unit'
require 'test/unit'

gem "testingbot"
require "testingbot"

class ExampleTest < TestingBot::TestCase
attr_reader :browser
  def setup
     browser = Selenium::Client::Driver.new \
        :host => "hub.testingbot.com",
        :port => 4444,
        :browser => "iexplore",
        :version => "9",
        :platform => "WINDOWS",
        :url => "http://testingbot.com",
        :timeout_in_second => 60

    browser.start_new_browser_session
  end

  def teardown
    browser.close_current_browser_session
  end

  def test_page_open
    browser.open "/"
    p browser.session_id
  end
end

This code will return a String with the session_id of the test (a unique identifier for the test). For example, the session_id we receive is: 7f5br7939150a9f199d2215920403e83


You can then query our API to fetch the video and screenshots of this test: curl -u key:secret https://api.testingbot.com/v1/tests/7f5br7939150a9f199d2215920403e83


This call will return a JSON formatted string with the following data:

Copy code
{
  "created_at":"2012-01-20T23:21:23Z",
  "extra":null,
  "id":121453,
  "name":"ExampleTest::test_page_open",
  "session_id":"7f5br7939150a9f199d2215920403e83",
  "status_message":"OK",
  "success":true,
  "thumbs":["https://s3.amazonaws.com/thumbtestingbot/7f5br7939150a.jpg"],
  "video":"https://s3.amazonaws.com/rectestingbot/7f5br7939150a.mp4",
  "browser":"IE9",
  "os":"WINDOWS"
}

The response contains the video URL (https://s3.amazonaws.com/rectestingbot/7f5br7939150a.mp4) and the thumbnails of every step in your test.


This is just one example call to our API, for more information, please consult our API guide.

Ready to start testing?

Start a free trial