ContributionsMost RecentMost LikesSolutionsRe: Code prettier Hi unfortunately, there is no such plugin now. But good thing in Prettier that you can use it with commit hook: https://prettier.io/docs/en/precommit.html So, maybe it will be even more helpful to introduce guidelines for the whole team. Re: TestExecute - How to get results to standard output. Hi could you specify, which type of information you want to get during the test execution? Re: Newman execution in TestComplete Hi you can use Wshsell.Run or Wshsell.Exec to run it via command-line https://support.smartbear.com/testcomplete/docs/app-testing/desktop/console/about.html and read data as wText, or StdOut, or just save output into text file, wait for Newman text execution, read the file via aqFile.ReadWholeTextFile() and post it into log Re: Turning off Share Test Results feature Hi, https://support.smartbear.com/testexecute/docs/reference/options/engines/log.html just disable the option "Activate after test run" Re: What is the best way to automate Dropdown which have lot of values to select (Eg: State Dropdown) lets try to do it like this: WhatToClick = "'"+excelSheet.Cell("A", 3).Value+"'" put single quote before and after the WhatToClick Re: What is the best way to automate Dropdown which have lot of values to select (Eg: State Dropdown) 1. For native web dropdown controls (even for Scalable Web Testing) the code will be: function test() { Sys.Browser("chrome").ToUrl("https://material.angular.io/components/select/examples"); Sys.Browser("chrome").Page("https://material.angular.io/components/select/examples").FindElement("//select[@id=(//label[.='Cars *']/@for)]").ClickItem("Audi"); } So, maybe the control which you use is not supported one. In this case you can request support of this control in the special section for feature Ideas: https://community.smartbear.com/t5/TestComplete-Feature-Requests/idb-p/TestXCompleteFeatureRequests 2. 3. 4. Unfortunately, I have no access to your web page, but it seems, yes, it's not simple drop-down. That's how it's possible to deal with controls without special support: function Test1() { let URL = "https://material.angular.io/components/select/overview"; let whattoclick = "'Pizza'"; Browsers.Item(btChrome).Navigate(URL); let browser = Sys.Browser(); browser.BrowserWindow(0).Maximize(); let page = browser.Page(URL); page.FindElement("//select-overview-example/mat-form-field//mat-select//span[contains(@class, 'mat-select-placeholder')]").Click(); page.FindElement("//span[contains(text(), "+whattoclick+")]").Click(); } Re: What is the best way to automate Dropdown which have lot of values to select (Eg: State Dropdown) 1. You can not to use NameMapping for every item, just put there only the container (drop-down control). The "source" of the items can be any. You can use Excel file, or iterate the values all the list using the loop and wItemsCount 2. Displayed name or index https://support.smartbear.com/testcomplete/docs/reference/test-objects/members/combobox/clickitem-action-combobox-control.html Re: Community Day 2021 - Regression Testing of Performance function main() { let scenarios = ["order_book_test", "order_glass_test"] for (var i=0; i<scenarios.length; i++) { aqTestCase.Begin(scenarios[i]); Login(); Make_Order(); Logout(); aqTestCase.End(); } } function Login() { function navigate() { Log.Error("Unable to navigate") } navigate(); Log.Message("Pass auth"); } function Make_Order(goods) { Log.Message("Make order") } function Logout() { Log.Message("Logout") } function EventControl1_OnLogError(Sender, LogParams) { Log.Warning("An error has been fired in scenario "+aqTestCase.CurrentTestCase.Name) } Re: Remove or disable testcomplete extension from google chrome "C:\Program Files (x86)\SmartBear\TestComplete 15\Bin\Extensions\tcCrExtension\DisableChromeExtension.bat" Re: What is the best way to automate Dropdown which have lot of values to select (Eg: State Dropdown) If the final goal is to select specific item, it can be done with ClickItem method: function test() { Sys.Browser("chrome").ToUrl("https://material.angular.io/components/select/examples"); Sys.Browser("chrome").Page("https://material.angular.io/components/select/examples").FindElement("//select[@id=(//label[.='Cars *']/@for)]").ClickItem("Audi"); } Also, please, pay attention on wItem(), wItemCount, and wItemList Maybe they can help in your case