ContributionsMost RecentMost LikesSolutionsRe: Plot some results Plotting as final result is enough for me. Does the plotting result have the dedicated page on Your documentation - preferably with Python example ? Re: MFC application testing Thanks, Until now I did not change anything inside Name Mapping, Do You have any tutorial how to change it / documentation ? Best Regards, Michal Re: Plot some results I wonder about my variables plotting not only system ones. Plot some results Hello, Is it possible use any plot library inside the test complete ? I would like to plot e.g. memory usage in time Best Regards, Michal MFC application testing Hello, During creating many functionalities inside our application I observe a strange bahaviour of TestComplete and Windows handlers. Sometimes window handlers inside my application change the naming and after this the elements are not accessible by TestComplete. Intelligent Quality Addon helps with many situations but not with all of them Our app is based on MFC and for example I see the situation: All of there windows are the same (but only one of them exists in one time). Of course I can handle this issue like: if exists .... but I wonder if there is any other fancy option to handle these issue in testComplete Best Regards, Michal SolvedRam usage by Application Hello, I need to implement the Memory consumption meter for my tests and I wonder why my code shows me a different results than Windows Task Manager. My code (Python): def ram_usage(var_name): memory_usage = Sys.MemUsage Log.Message("Total memory usage:" + str(memory_usage) + "%") app_memory_usage = Sys.Process("MyApp").MemUsage Log.Message("App memory usage:" + str(arena_memory_usage) + "kBytes") Project.Variables.VariableByName[var_name] = app_memory_usage Should I use another methods to obtain RAM consumption ? Best Regards, Michal Solved