ContributionsMost RecentMost LikesSolutionsRe: Test results I want to get the report with individual test case execution details, exporting summary report doesnot contain details at steps level. I want to fetch details of each test case that ran in an execution. I want that report externally in any format which can be visible without opening test complete Test results Is there a DB or storage where te test results are stored, I know Log folders is there but the arrangements in Log folder for any individual test case is very confusing, there is no file that displays the overall status of the test cases along with each test steps. Which is the single test result file that will display all the details of a test case Exporting test results Is there any method by which we can export the test steps of an test cases in a suite in an XML/JUnit format. Export to Junit I have used Export to jUnit to export my test results in junit (XML) format but the xml represnts data at suite level only name of test case and status are reflected. Is there a way where we can export our test results in Junit with each and every steps of the test cases. ReportPortal Plugin I am trying to integrate Reportportal with testcomplete for our project but unable to do that. Is there a way to integrate Reportportal by any other means if direct plugin is not present. May be from Jenkins or Jira. Any help is appreciated Import OpenCV libraries in TestComplete I want t import Open CV libraries in test Compete to work on Animation and graphic Automation. Is it possible to import the libraries? Re: Region.find is always returning true If is it not "null " that means testComplete has find the image inside another image. While I know for the fact by seeing both the images that the result should be null. that is the query i am asking, how to validate whether .Find method is able to find the region or not Re: Region.find is always returning true I want to validate that in a given object(which is an image) the stored region is present or not. Object = Aliases.VizGui.wndViz.TkChild.TkChild.TkChild.PeakOCSWnd; is an image. ss= it is the region i have created. i want to find "ss"(Region) in object. Re: Region.find is always returning true This is the code snippet i am using for a POC purpose function Test() { let page = Aliases.VizGui.wndViz.TkChild.TkChild.TkChild.PeakOCSWnd; Regions.Find("abc",page) Regions.FindRegion("ss",page) } Region.find is always returning true I have used Regions.Find to find an image(stored in Region) in an object. But the code is passing even when the image is not present in the object Solved