0

I have a script that executes a test case by opening a specific website, let me illustrate this by the following example -:

  1. My script opens up the web page www.google.com

  2. Enters some text in the search box

  3. Presses the button search

  4. Then clicks the first link on the search page.

The problem is that I need to make a real time screencast of this whole process i.e all the actions need to be captured, here I am not talking about the screenshots, I need this process to be integrated in my project, can anyone suggest me some tools or point me to any java library that does the trick for me.

Thanks in advance.

Kara
  • 6,115
  • 16
  • 50
  • 57
AnkitSablok
  • 3,021
  • 7
  • 35
  • 52
  • 1
    Possible dups: - http://stackoverflow.com/questions/5250050/java-capture-video-of-whats-on-the-screen - http://stackoverflow.com/questions/464593/how-to-capture-selected-screen-of-other-application-using-java – kaliatech Jul 23 '12 at 13:14
  • I don't know what led you to make a negative vote, I think its a perfectly right question, you should first review whats written in the question – AnkitSablok Jul 24 '12 at 04:28

1 Answers1

0

You can use freeware CamStudio - tool for recording all screen and audio activity on your computer. You can record video in Streaming Flash format or make the AVI file.

Alex K
  • 22,315
  • 19
  • 108
  • 236
  • can we integrate it with the java code such that whenever a script executes a new thread is instantiated that activates camstudion and makes a new video of the process everytime – AnkitSablok Jul 23 '12 at 21:14