Uziii
Uziii

Reputation: 841

Some questions about TestComplete

  1. Which language is better for complex programming and exception handling?
  2. What is the purpose of using aliases when object mapping is already done?
  3. Can I highlight objects when tests are running?

Upvotes: 0

Views: 517

Answers (1)

Dmitry Nikolaev
Dmitry Nikolaev

Reputation: 3908

  1. JScript or Python. These languages are the most powerful among the languages supported by TestComplete at the moment.

  2. They allow you to build a custom object tree that you can use in your tests. This custom tree does not have to be similar to the actual object tree. If the actual object tree gets changed due to changes in the tested application GUI, you can update the Name Mapping tree without changing the Aliases tree and, therefore, without modifying any existing tests that use this custom Aliases tree.

  3. Yes, use the Sys.HighlightObject method for this.

Upvotes: 0

Related Questions