Forum Discussion

poffin's avatar
poffin
Occasional Contributor
9 years ago
Solved

Python Variable Auto Completion

I have the same question as a previous poster: https://community.smartbear.com/t5/Desktop-Testing/Python-and-IDE-auto-complete/m-p/104937/highlight/true#M3717

 

I'm switching from a JavaScript project to a Python project and there's one feature that I really miss. 

 

 

var aLongVariableName = Sys.Process("chrome");
aLo

If I were to type this into a TestComplete javascript project the IDE would suggest the name of the variable before I finished typing it.

 

 

 

anotherLongVariableName = Sys.Process("chrome")
ano

If I were to write the above code in Python, I would not be offered the name of the previously defined variable. Does the python IDE just not have this functionality, or perhaps if I declare it a special way I could get my auto completion back?