ContributionsMost RecentMost LikesSolutionsRe: Figure out if a Keyword Test is used Hi Joe_2 thanks for your advice. Since all our tests are stored in our code repository, I am not afraid of deleting any unused tests. If we find out we need a test again in a couple of years, we're save to get it from there. But until then, I would like to keep my test base as clean as possible. That's why I want to delete unused keywordtests. If I rename a keywordtest, TestComplete is (most of the time) smart enough to rename all usages of that test. So, the only way to find out if a test is needed would be to delete it and run all tests afterwards. I would like to avoid that additional test run, since it can be very time consuming. I would expect TestComplete to provide this information somehow, since it is needed to support an efficient renaming mechanism. Best regards Guido Re: Figure out if a Keyword Test is used Hello Leandro Unfortunately, the find function only seems to search in texts. It only listed the occurance if it was in a script file, or in the value column of test operations. All other occurances were not listed, e.g. the keywordtest itself. And definitely not the occurances in test items, which is what I needed. Best regards Guido Figure out if a Keyword Test is used Hi there I recently stumbled upon a keyword test that has been written by myself a long time ago. I am not sure if it is still used in a Test Item or a Test Script, since a lot of people have been working on it. Therefore, I am not sure if I can delete the test safely. Is there a (simple) way to figure out if a keywort test (and/or a Script Routine) is still used somewhere in a project? I'd prefer a solution other than deleting the test first and then running the whole test project :) Many thanks in advance Guido Replace Runner.CallMethod in Code ExpressionHi, I want to concat two strings in a code expression and assign the value to a variable. One string is a constant, while the other string is the result of a script method. I achieved this by using the operation Set Variable Value, setting Mode to Code Expression and setting Value to aqString.Concat("MyString_", Runner.CallMethod("Unit1.getUniqueString")). This works fine, but the documentation for Runner.CallMethod says that this method is obsolete. Is also says that the method should be called directly instead. I've tried to rewrite Value to aqString.Concat("MyString_", Unit1.getUniqueString), but this does not work (the variable value will be completely empty). How can i call a script method from a code expression, without using Runner.CallMethod? Best regards Guido