ContributionsMost RecentMost LikesSolutionsWhy testcomplete does not use utf-8 for its *.sj files?Hello, It seems to me that TC does not use utf-8 for sj files and probably uses utf-10 or something else. With this encoding some merge tools say that it is binary file even if it is not true. Is it possible to anyhow change the encoding to utf-8 for file which is created with TC itself? Thank you. zakynRe: Does TestComplete supports Mercurial Source Control System?Hi, I have a problem that *.sj files are recognized as a binary files. Do you know why? it seems to me that the encoding is UTF-10. Is it true? Is it possible to change it to UTF-8 with some settings in TC or not? Thank zakynHow can I add new group and subgroup in requirements?Hello, I have a problem with the groups and subgroups in requirements. I am not able to find how I can add and define them. Could you please help me. Thank you.JScript - is it possible to anyhow avoid of writing "\\" in the path?Hello, I am using a lot path in my codes so I would like to ask you if it is somehow possible to write only path = c:\example\example1\example2 without doubled \\ Of course I need some function for that but I was not able to develop it. In some cases it worked in another not :( Do you have any piece of advice for me? Thank you. VladimirRe: How wait till process does not exist and do something without errorThanks it works. zakynHow wait till process does not exist and do something without errorHello, I have an installer in silent mode and I would like to wait until application is installed, then check the application exe file and run. This is a snippet of the code: stillInstalling = true; while(stillInstalling) { if(!Sys.Process("AppInstaller_*").Exists) { stillInstalling = false; } else aqUtils.Delay(3000); } The problem is when the installation is finished then the TC is waiting for the Sys.Process and then TC stops the script because process is not there. But I would like to go to the next command, like run installed application and so on. Is there any better concept to do that? Thanks zakynRe: Set a global TestedApps fileHi Alex, Please increment the database request by one more. This would be very useful function for me. Thanks. VladimirQt Object and calling QT methodsHello, I am in trouble with calling method of the qt object. TestComplete helps me and offers me that method but I have a problem with constructing correct parameter. For Example. I would like to set Text to QT LineEdit control but method setText(object param1) does not work, or I am not able to use it correctly. I use JScript. I try Aliases............LineEdit.setText("example"); - the result is bad type of parameter Of course I can use Aliases............LineEdit.setFocus(); and then Aliases............LineEdit.Keys("example"); Could you help me? My general question is if TestComplete allows to call native public QT methods or set or get public properties of QT objects. Thanks a lot Vladimir