The performance graph is excellent, but can only be seen in Test Complete itself. Please allow this graph to be exported to PDF or something so we can show this excellent graph in places management can see it.
Have written a little program to decode MHT files. This will pull out all the various packed sections and create unpacked (viewable) files instead.
This means you can pull out the performance graphs and display the, in Confluence, where management can then relate to the work done. This reads log file SCW.mht and writes to several files in the Temp directory.
This post removes leading spaces so apologies for the format. Enjoy 🙂
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace ConsoleApplication1 { class Program {
static void Main(string[] args) {
int counter = 0; string line;
// Read the file and display it line by line. System.IO.StreamReader file = new System.IO.StreamReader("c:\\temp\\SCW.mht"); while ((line = file.ReadLine()) != null) { var jpgLoc = line.LastIndexOf(".jpg"); var gifLoc = line.LastIndexOf(".gif"); var pngLoc = line.LastIndexOf(".png"); var bmpLoc = line.LastIndexOf(".bmp"); var htmLoc = line.LastIndexOf(".htm"); var jsLoc = 0; // line.LastIndexOf(".js");
Welcome to the TestComplete Feature Requests board!
Here you can review submitted feature requests and vote up the ones you like! If you can't find the feature you want - go ahead and suggest your own idea. Ideas with the highest rating can be implemented in the product.