Reputation: 479
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
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