ContributionsMost RecentMost LikesSolutionsRe: Can i mobile test on Qt application ? I prepared my android app for testing and recorded a scenario.The scenario was to close the program after the user login.I wanted to try it with a simple scenario.But TestComplete could not recognize the objects of my application(buttons and textboxs).I sent the related test record as an attachment(QmlMobileRecord.png). Can i mobile test on Qt application ? I have application written with qml. I tried to make test but I failed. Is there a way to test qml-based software on mobile? Re: Performance Counter not Work what do you mean exactly ? i wrote like on photo whta can i do another ? baxatob Re: Performance Counter not Work I tried look at attachment baxatob Re: Performance Counter not Work I am testing same machine and i wrote my computer name like of attachment. baxatob Performance Counter not Work I want to show performances of graph after the test. I configureted tools>current project>performance counter>add and then i wrote my competer name and i selected CPU after click finish. I run m test again. My test was successful but when i open performance counter page, I see thi messega "The panel is empty. No information was collected during the test run. Learn about the panel and how to create performance counter". I added that photos to attachment. How can i fix this problem ? Re: how can i test the code that i write in visual studio with test complete ? I did same steps this link https://support.smartbear.com/testcomplete/docs/testing-approaches/unit-testing.html and I continued this topic-TestComplete Unit Tests - .NET Applications- . when ı try this step( 5. n the Process text box, click the ellipsis button and select the process started by your application in the subsequent dialog.) I took this error 'Unable to find a process with the name "UnitTestingDemo". Dialog of process is empty. What can i do solve this problem? how can i test the code that i write in visual studio with test complete ? I wrote some codes in Visual studio and i want to unit test in test complete that codes. How can ı unit test in test complete ? My_cod using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ClassLibrary2 { public class Islem { public Islem() { } public Islem(int sayi1,int sayi2) { this.Sayi1 = sayi1; this.Sayi2 = sayi2; } public int Sayi1 { get; set; } public int Sayi2 { get; set; } public int Carp () { return this.Sayi1 * this.Sayi2; } public int Bol() { return this.Sayi1 / this.Sayi2; } } } for example ı want to test Bol or Carp what should ı do? Re: unable to find a process with the name "UnitTestingDemo" The problem is solved ı'm not getting error thanks but now i dont understand how can i make unit test ? what will i do when it run the "unit testing application" ? unable to find a process with the name "UnitTestingDemo" I want to run sample of UnitTestingDemo , I am getting this error 'Unable to find a process with the name "UnitTestingDemo". ' What can ı do? Solved