ContributionsMost RecentMost LikesSolutionsRe: How to open Dev Tools using Test Complete? so you are saying we cannot go to other tabs like Performance or Console? Thanks Re: How to open Dev Tools using Test Complete? Just want to validate few things on different tabs. I tried this to move to Performance tab but did not work Sys.Browser("chrome").Page("*").Keys("[Ctrl][Shift][P]") Re: How to open Dev Tools using Test Complete? HOw can we move to different tabs using script? Like how can I go to Performance tab and validate something? Thanks How to open Dev Tools using Test Complete? These are the steps I tried but did not work. { //Opens the specified URL in a running instance of the specified browser. //Browsers.Item(btChrome).Navigate("https://example.com/"); //Clicks the 'BrowserWindow' object. // Pressing Ctrl+Shift+F to open find dialog //function sendCtrlShiftI() { // Press and hold Ctrl and Shift keys, then press I, and release all keys // aqUtils.SendKeys("^+I"); } function Test1() { // Opens the specified URL in a running instance of the specified browser. Browsers.Item(btChrome).Navigate("https://example.com/"); // Accessing Chrome's Developer Tools using TestComplete var page = Sys.Browser("chrome").Page("https://example.com/"); // Execute JavaScript to open Chrome Developer Tools Sys.Keys(^+I); // page.RunBrowserCommand("Developer Tools"); // Alternatively, you can use the following line to open the Developer Tools: // page.Keys("^+I"); } SolvedRe: Exporting results to both Junit and html Thanks Re: Exporting results to both Junit and html I am able to export individually, but I was wandering is it possible to export to both HTML and JUNIT at same time? Exporting results to both Junit and html I am able to export a execution plan results to either Junit or Html. But I was wandering is there a way that I can export the same results in both format at same time? Thanks SolvedRe: Undefined folder created Got it Thanks Re: Undefined folder created Will it create folder all the time? Cuz I do not want to create folder all the time, just one folder and then timestamp added to it. Thank you Undefined folder created It creates an undefined folder only. Inside Undefined we got Manual and inside Manual we got time stamp. The main problem is the first folder Undefined. Could anyone please help me? function Test() { var currentDateAndTime = aqDateTime.Now(); var currentTime = aqDateTime.Time(); var currentDate = aqDateTime.Today(); var projectName = ProjectSuite.Variables.projectName; var testtype = ProjectSuite.Variables.testtype; var timestamp = aqDateTime.Now(); //currentDate + currentTime; if(testtype == "Manual") { ProjectSuite.Variables.buildnumber = aqConvert.DateTimeToFormatStr(timestamp, "%m%d%Y_%H%M%S"); } var folderPath = "E:\\Results\\" + projectName + "\\" + testtype +"\\" + ProjectSuite.Variables.buildnumber + "\\"; //var folderPath = Project.Variables.resultpath; // Check if the folder already exists //if (!aqFileSystem.Exists(folderPath)) { // Create the folder //if (aqFileSystem.CreateFolder(folderPath)) { // Log.Message("Folder created successfully: " + folderPath); // } else { //Log.Error("Failed to create folder: " + folderPath); // } //} else { // Log.Warning("Folder already exists: " + folderPath); //} aqFileSystem.CreateFolder(folderPath); //folderPath = folderPath + "\\" Log.SaveResultsAs(folderPath, lsXML, true, 1); // Files are created in the Project1 folder } Solved