I have automated scripts that run every night (around 350 scripts or testcases). I want to record a video of each test case (Python scripts). Is there a tool or way that I can use to control video recording for each test case separately?
For instance, during a test case setup start recording and during teardown stop recording and save the video locally with a specified name and date. So I should have 350 videos for each testcase (more preferably save only videos for the failed test cases).
Is there a way of integrating this functionality in the code I use for my setups and teardowns?
A simple webdriver has no function to record video; you need to use a third-party library, like Castro.
For a Java webdriver, look at blog post Screen Recording (Video) of Java Webdriver script.