ContributionsMost RecentMost LikesSolutionsRe: Need to add a variable to a string I fully agree, please do read the documentation. Smartbear makes excellent documentation for Testcomplete most of the solutions we describe can be found in there. Re: Need to add a variable to a string use the 'run script routine' function in a keywordtest to run script code. then use the function 'set variable value' and set that to 'last operation result'. the returned value from your script is now stored in your variable. Alternatively you could also set a variable in the script itself: Re: Need to add a variable to a string Use the script code within your keywordtest, then use set variable value, and set it to 'Last result', now your variable is set to the return value of the scriptcode. Or use a project variable and set that inside the scriptcode to the variable, just before return timestamp add this: Project.variables.{yourvariable} = timestamp; Re: Looking to pass values from Execution Plan set up If the test is in the Executionplan multiple times then you can set the parameter to different values. I'm using scripts but KWT works the same way Looks a little like this: Just make sure the Keywordtest uses a Parameter You can set them here: Re: Can visual test work with .net applications? After asking the Testcomplete Forums it seems VisualTest is Web only. Re: Working with Visual Test That's a shame, After not finding anything online I even asked ChatGPT, I guess he lied. Thanks anyways! Working with Visual Test I'm trying the Visual Test trial licence, and for web based applications it seems to work as intended. I can't find anything on visual testing other applications. Google is not my friend in this case, when searching anything related to Visual test I only get Non related results, When added 'Smartbear' to the search I only get Testcomplete related stuff. When trying things on my ownI just keep getting the error: "VisualTest : can't get 'ObjectType' property for object" Our application is a .Net 8 WinForms application SolvedCan visual test work with .net applications? I'm trying the Visual Test trial licence, and for web based applications it seems to work as intended. I can't find anything on visual testing other applications. Google is not my friend in this case, when searching anything related to Visual test I only get Non related results, When added 'Smartbear' to the search I only get Testcomplete related stuff. When trying things on my ownI just keep getting the error: "VisualTest : can't get 'ObjectType' property for object" Our application is a .Net 8 WinForms application SolvedRe: Is there a way to fail the test by matching 2 strings? You could always just post an error to the logs if it doesn't match like this: EDIT: You can then also add the value of the strings you wish to compare into the logs Re: How can I retrieve the text of that dropdown below? Since none of the text properties are working you could always brute force it by clicking the textfield, CTRL + A to select all, CTRL + C. now the text is stored in your clipboard and you can write that to a variable