mgroen2
9 years agoSuper Contributor
How can I see which script language is used?
In TestComplete, how can I see which scripting language(s) is/are used in the scripts? I am not a developer. And I want to know which scripting language is used in the scripts. I can't find it on the...
- 9 years ago
Hi Mathijs,
You can see a project's language as follows:
- Go to View > Select Panel and add the Properties panel.
- Select the project in the Project Explorer – you will see its language in Properties.
You can also record an empty script and see what the recorded code looks like.
VBScript:
Sub Test1 End Sub
JScript, C++Script or C#Script:
function Test() { }
Python:
def Test1(): pass
DelphiScript:
procedure Test1; begin end;