Ask a Question

Intelligent code completion feature

Intelligent code completion feature

Would you consider implementing intelligent code completion in TestComplete anytime soon (for Python in particular)?

It would save a lot of time not just for devs when it comes to writing the code, but also for QAs who are not that much familiar with coding itself when they have to write tests (by just calling desired classes and methods).

 

Some examples:

 

# Test.py

class Class1:
    def SomeFunction(self):
        pass

def Test():
    class1 = Class1()
    class1. # the option for choosing SomeFunction should pop-up here

 

Or:

 

# Test1.py
class Class1:
    def SomeFunction(self):
        pass

    def SomeOtherFunction(self):
        pass

class1 = Class1()


# Test2.py
from Test1 import *

class1. # intellisense for calling functions SomeFunction and SomeOtherFunction

 

 I look forward to hearing from you soon on this matter.

1 Comment
Marsha_R
Champion Level 3
Announcements
Welcome to the TestComplete Feature Requests board!

Here you can review submitted feature requests and vote up the ones you like! If you can't find the feature you want - go ahead and suggest your own idea. Ideas with the highest rating can be implemented in the product.

Check out the Create a Feature Request guide for more information.
New Here?
Welcome to the Community
Sign Up Here