ContributionsMost RecentMost LikesSolutionsExecuting manual testsHi all, I have started converting old manual tests (word, excel) to TestComplete manual tests. My question is: What options do I have when executing these TestComplete manual tests? Do the tester have to start TestComplete or can the manual test be executed standalone somehow? Do we need additional licenses? We have several testers that must be able to run these tests, sometimes even simultaneously. Today we have a Enterprise license. Thank you for any information. /JoakimRe: Recorded keyword test and identifying objectsHi again Sorry for not replying earlier. This problem is giving me an headache. All my tests act inconsistent as objects are constantly recieving different id:s. I run the test once and it goes through, but the next time it doesn find half of the objects. I cant reach the dialog you supplied a screenshot for, because when I try to look at the object in the namemapping file it does not exist, as shown in my screenshot 1.png. My second screenshot shows the object explorer, but from there I cant specify on what properties I want to use when identifying my object. Please help me, I am getting a bit desperate... I must be missing some vital feature... /Joakim Recorded keyword test and identifying objectsHi all I have recorded some tests that click radiobuttons that are present in a grid. The recorder creates a step containg a click action on the object below. Aliases["IEXPLORE"]["pageHttpLocalhostIntasmaWizardad"]["document"]["all"]["Item"]("ctl00_mainContent_ucAddCase_ucSelectBaseApplication_ucSelectCaseGridFrom_rbSelect611") The problem is that the next time the test is executed this object no longer exists. Its called something like: Aliases["IEXPLORE"]["pageHttpLocalhostIntasmaWizardad"]["document"]["all"]["Item"]("ctl00_mainContent_ucAddCase_ucSelectBaseApplication_ucSelectCaseGridFrom_rbSelect617") I then figured I have to edit the namemapping file to try to identify the object an other way, but when trying to TestComplete says the object does not exist in the namemapping file. How should I handle this problem? What am I missing? /JoakimRe: CSV file readlineMany thanks for your help Robert. I really appreciate it! Best regards /Joakim Re: CSV file readlineIm adding all data in this file to a double dimension array to compare it with a DBTable object. There might be a smarter way? I will look into your suggestion using the DDT.CSVDriver Thank you! /Joakim CSV file readlineHi, When reading line by line from a text (csv) file rows are cut in half and sometimes skipped all together. See below for code. I ahve also attached a sample .csv file. What am I missing? function ReadLineSucks(path) { var CSVFile = aqFile["OpenTextFile"](path, aqFile.faRead, aqFile.ctANSI); var row; while(!CSVFile.IsEndOfFile()) { row = CSVFile["ReadLine"](); Log["Message"](CSVFile["Line"]); Log["Message"](row); } CSVFile["Close"](); } /JoakimFindChild(ren) on web pagesHi, I am a bit confused to as how the findchild functions works for object on web pages. When i select object n a web page they all seem to have the value 0 in the property "ChildCount". And this an object which has hundreds of buttons, divs and labels. What am I missing? Edit: When using the "Find Object" functionality in keyword test it only seems to search for property values in the parent. /JoakimUpdating calls to script routines in keyword testsHi, Scenario: I do calls to a specific script routine that takes 3 parameters in my 300 keyword tests. I now want to update the script routine to take 4 parameters instead of 3. What is the simplest way of updating all of my keyword tests? Left unchanged all the keyword tests will fail because of the missing parameter. Edit: The same also goes for keyword tests inside other keyword tests as they also take paramters. Thank you! /JoakimRe: From two-dimensional array to .csv fileThank you very much Robert! This was exactly what I was looking for. Best regards /Joakim Re: From two-dimensional array to .csv fileIt would also be nice if someone could explain how I easliy modify an csv file using scripts in TestComplete. Thank you! /Joakim