Identifiers are the names you give to user-defined items in
4Test code. These items include constants, variables, functions, methods, properties, windows, window classes, and data types.
Identifiers conform to these naming rules:
- They are case-sensitive. That is, "myvar" and "MyVar" are not the same.
- They begin with an alphabetic character or an underscore (_).
- They include any combination of alphabetic characters, numerals, and underscore characters. They can contain single-byte
international characters, such as é and ñ.
- All characters are significant.