ContributionsMost RecentMost LikesSolutionsRe: Image is getting recongnised on my machine but it is not getting recognised on Jenkins. Hi @chand, When you say its not getting recognized on Jenkins you mean to say its running on a different environment? If it is running on a different environment you might want to try capturing the images again specifically for that environment. Keep in mind that image recognition requires each pixel to match if the resolution is not the same it wont work. Re: Object Spy doesn't focus on dropdown arrow of the desktop application Hi Preker, Alex has given you some good suggestions. Just for the sake of something different you can also look into the image based testing. You can add this dropdown arrow in your image repository and click on it through this approach. Here is a doc to help you out. https://support.smartbear.com/testcomplete/docs/testing-with/object-identification/image-based/about.html Re: Jenkins Jobs and Code Source Management with GIT - G drive Nikolayev, Like Wamboo I am a little confused too by the G drive thing but I guess you can have a look at your jenkins home directory (Workspace root directory). This will help to figure out why jenkins is downloading your repository in a different drive from what you are expecting. Re: Setting Store to have relative paths Hi, What I do with data-driven testing is keep the data in sub folders inside the project hierarchy. You can get the path to your project folder by. var path=Project.Path This will work regardless of where you run it. Thanks Re: Project Suite and Individual Project Test Log Hi kaloelee, Have you tried going to the project properties and changing the log location? If that is what you are looking for here is what you have to do. Right click on your project, go to edit->Properties->General and you will see a tab with log location there. Thanks Re: Disable device cloud extension through automation in test Execute 14.4 Saman_Akhtar , I think those are your best options. But you could try editing the registry value (since you've already figured out the path for it) through command line and execute that before starting your execution. https://superuser.com/questions/607572/how-do-i-modify-the-data-of-an-existing-registry-key-value-name-from-cmd 2.Or any way to obtain TestExecute object so that we can go Install Extension -> Disable checkbox next to Device Cloud? I dont think that will be possible since test execute has not launched yet. Re: How to check if a button is Clickable Hi, Enabled is the property used for buttons in test complete to check their state. Maybe a bit more detail would allow someone to help you out. Reference to doc: https://support.smartbear.com/testcomplete/docs/app-objects/specific-tasks/standard/button/checking-state.html Re: Variable table findrow method Okay so I dont know what table.reset does I've never really used it. What I would do in your case is ( If you have your column number fixed which is not a great idea btw) function FindDavid(){ table = Project.Variables.yourTableVar for(var i=0; i<table.RowCount; i++){ var cell = table.cell(i,0) //whatever your column number is if(cell.contentText == "David"){ return i; } } } Try this and let me know. Re: Whether Test Complete 14.20 Support Application developed with UWP Control??? Hi, I think this might answer your question. https://support.smartbear.com/viewarticle/65851/ Thanks Re: Variable table findrow method Hi, Could you link where exactly you got that snippet from so I could read it before commenting on it. Also, if you could share what error you're getting at those particular lines. Seems like your table variable has an issue. Thanks