About Scripts
A script is a procedure or function in one of the supported scripting languages.
Scripts are grouped into unit files, and each project may use as many units as needed. In a TestComplete project, all the units belong to the Script project item. When you create a new project, TestComplete automatically creates the Script project item with one unit in it.
Note: A unit name can be used in scripts, it should be a valid script identifier, and it should not coincide with the names of existing program objects.
Creating and Editing Script Tests
Use the following ways to create a script:
-
The easiest way is to record a script test.
-
You can write a script test manually.
You create and edit script tests in the Code Editor of TestComplete. To open your script test in the editor, right-click the unit that contains the script, and then click Edit.
When you edit a script unit, TestComplete automatically creates a backup copy of the unit file. The copy resides in the same folder as the unit file resides. The copy has the original unit file name and the .bak extension. Using this copy you can restore the unit code as it was before editing.
Calling Scripts Declared in Another Unit
You can call scripts from other scripts by their name. If you want to call a script from another unit, you must import it first. You can also import units of other projects. See Calling Routines.
Scripting Languages
When you create a project, you select a scripting language for this project:
- JavaScript
- Python
- VBScript
There are also legacy scripting languages:
Support for these languages is built into TestComplete, and does not require additional modules or configuration. All languages are restricted to variables of the OleVariant-compatible type and cannot use pointers. Types specified in variable or function declarations are ignored.
Each of the languages has its pros and cons that may or may not match your specific requirements. To decide which language to choose, read the following:
Selecting the Scripting Language
For complete information on the supported scripting languages, use the links below:
JavaScript | developer.mozilla.org/en-US/docs/Web/JavaScript/Reference |
Python | docs.python.org/3.6/ |
VBScript | docs.microsoft.com/en-us/previous-versions//t0aew7h6(v=vs.85) |
Debugging Scripts
TestComplete includes its own script debugger. So, debugging script routines does not require any additional software. See Debugging Tests.
Running Scripts
You can run scripts:
-
As your project’s test item specified either by the script name and unit or by tags.
-
From the Project Explorer.
-
From the Code Editor.
-
From other tests.
-
From the command line.
To learn more, see Run Scripts.
Before running any script, TestComplete checks all script units for syntax errors. The script will not be run if syntax errors are found.
Script File Format and Source Control Systems
TestComplete script files can have either ANSI, UTF-8 or Unicode (UTF-16) format. Some source control systems treat Unicode files as binary and thus do not let you perform some operations over such files, for example, compare or merge. Please refer to the documentation on your source control system to learn how you can work with Unicode files.
To solve the problem, you can also change the character encoding format used in your project for script files. For more information on this, see Units Encoding.