ContributionsMost RecentMost LikesSolutionsRe: Check folder path in Explorer window djadhav - Thanks for your code snippet. I have attempted to convert this over to JScript to use within my project, but my trouble lies within the assignment of the ValuesArray var. I get a runtime error of "object expected". Here is my converted script: function findExplorerChild() { var tst, PropNames, PropValues; //Creates arrays of property names and values PropArray = new Array("Name", "Visible"); //This will change with folder name we are looking for ValuesArray = new Array(Window("*", "Folder Name", -1), "True"); //This line generates an error at runtime tst = Sys.FindChild(PropArray, ValuesArray, 10); if (tst.Exists) { Log.Message("The folder was found open in explorer"); } else { Log.Error("The folder was not found open in explorer"); } Delay(1000); } I have tried generalizing an object, such as "Sys.Process("*").Window("*", "Folder Name", -1), "True"); but that doesn't work either. Any ideas? Again, thanks for your help. Re: Check folder path in Explorer window I'm finally back on my automation project, so I was able to test out your solution djadhav Looking at my Object Browser, Explorer has two instances, Sys.Process("Explorer") and Sys.Process("Explorer", "2"). If I use your example of Sys.Process("explorer").Window("*","Tutorial Folder", 1).Exists It is unable to find the window, as it exists under the 2nd iteration of the Explorer process. I cannot get a wildcard to work with this approach: Sys.Process("explorer", "*").Window("*","Tutorial Folder", -1).Exists Any Ideas? Re: Check folder path in Explorer window Thanks for the responses, gentlemen. The dialog that we're opening from our application is not a save or open dialog, it just a normal explorer window (WIN+E), Re: Check folder path in Explorer window Tanya, That isn't exactly what I am wanting to do. Our application will open an explorer window, and I need to verify that the explorer window that was launched is opened to the correct path on disk. (Think about how in Internet Explorer or Google Chome when you download a file from the Internet, the download manager lets you "Open Containing Folder") :) Matt Re: Checking if a file exists in the Recycle Bin Alex, Thanks for your response. Our regression test case specifically states to verify that the file has been moved to the recycle bin. Since I have had difficulty doing so, our test currently just verified the file is no longer on disk in the original location. :robotwink: Re: Checking if a file exists in the Recycle Bin Thanks for the code snippet. I tried using the count method when I first approached this problem, but it appears that when you delete a file, there are other items that are also placed into the recycle bin at the same time. So, for example, the count before deleting a file could be 15, you delete 1 item from disk, and the new could would be 17. Deleting one more file could cause the count to go to 20. It is an unreliable approach. Re: Check folder path in Explorer window I am using a function within our application that opens Windows Explorer, my goal is to write a script that will verify that the explorer window that was opened is the correct path. Check folder path in Explorer window I have read in the community it can be difficult to automate Windows Explorer due to different operating systems. My task is to use an operation in my application to locate a file or folder on disk using a menu option. This would open Windows Explorer to the directory where the folder or file exists. Is there a way to validate this reliably across all operating systems? SolvedRe: Control file save dialog, different Windows versions In our testing, we decided to just get the text value of the "Type" drop-down box, assign it to a variable, and then pass it back in when interacting with the dialog. Hope this helps. Matt Re: Git NameMapping Merge Issues As a team, we only modify scripts and keyword tests one person at a time. The only overlap that occurs is when someone has to map a new object, add a new script, or add a new keyword test. The problem lies in the files TestComplete uses to keep track of the files on disk. Is there any type of documentation on merging files such as the NameMapping.tcNM, Scripts.tcScript, KeywordTests.tcKDT, etc. Why doesn't TestComplete just look for files on disk instead of maintaining a database of which files are in the KeyWord Tests folder? I feel like they definitely took the hard way in that regard. Is there any documentation on how these files' schema so we can intelligently merge manually?