Is there a video recorder for Selenium WebDriver?

I work in Selennium Webdriver2 with a specific IE application. I know that we can take screenshots of the execution. similarly, is it possible to record selenium in the form of video?

+4
source share
2 answers

This API helped me in solving the above problem, this is for your reference guys,

+4
source

There is nothing in WebDriver.

Sauce uses http://www.ffmpeg.org/ to record videos. There are other options such as https://code.google.com/p/java-remote-control/ .

Typically, the answer is that if you want to do this, you will have to implement it yourself.

+1
source

Source: https://habr.com/ru/post/1497983/


All Articles