Forum Discussion
AlexKaras
13 years agoCommunity Hero
Hi Christian,
plinkCommand variable in the executeCommand() function is of string type, thus instead of
'Clean sensitive data
Set plinkCommand = Nothing
you should write
'Clean sensitive data
plinkCommand = ""
P.S. It is possible to copy unpacked components of the script extension (description, script files, etc.) into subfolder below the ScriptExtensions folder and debug them as regular script in TestComplete.
plinkCommand variable in the executeCommand() function is of string type, thus instead of
'Clean sensitive data
Set plinkCommand = Nothing
you should write
'Clean sensitive data
plinkCommand = ""
P.S. It is possible to copy unpacked components of the script extension (description, script files, etc.) into subfolder below the ScriptExtensions folder and debug them as regular script in TestComplete.