Capturing video of application run during profiling
I'd like to know if there is a profiling tool that allows capturing a .NET application's run and at the same time capture it's run in a video format.
Afterwards, allowing to scroll through the run stepping through the exact code that was running that moment?
I'm testing a GUI application using automated code, and would like to know exact what code is being executed and compare with what i'm开发者_运维知识库 seeing on screen.
Are you aware of such a tool?
Camtasia will do a video screen capture.
Keep in mind a "video" is entirely different than a recording of how code has been executed. In which case, there's nothing that does both.
If you have Visual Studio 2010 Ultimate, it has a feature called IntelliTrace that sounds like it does most of what you want.
There is a free tool called CamStudio which has a proposed feature called 'Record active Window' (but I don't know if it's implemented in the latest stable release). Check that out to see if you can integrate it to your UI automation.
精彩评论