praskris
praskris

Reputation: 479

Writing TestComplete Plug-in with C#

Is it possible to write Test Complete plug-ins in C#? I see that you can write some extension for WPF controls in their documentation. However, can I write full fledged plugins? I am on version 8.5

Upvotes: 0

Views: 1261

Answers (1)

Dmitry Nikolaev
Dmitry Nikolaev

Reputation: 3908

TestComplete is a native COM-based application and, therefore, a custom plug-in should be a native dll with the COM architecture as well. Theoretically, it is possible to create it in C#, but I think that a possible result does not worth efforts. Information on the supported platforms (Visual C++ and Delphi) can be found in the Supported Development Tools article.

Please note that there are some samples included in the TestComplete SDK and some user-contributed examples for older versions of the tool:

I guess the current API is mostly the same, for the sake of backward compatibility.

Upvotes: 2

Related Questions