Forum Discussion
delink
5 years agoOccasional Contributor
Custom Python modules that you manually moved into your TestComplete installation are deleted with every upgrade.
Solution:
Reference the specific Python modules in your TestComplete Python scripts by adding the following at the very top:
import sys
sys.path.append('{path}\{folder with modules}')
import re
import my_module
...