baxatob
9 years agoCommunity Hero
Re: pyhon yaml library
In TestComplete all python non-native libs should be placed in C:\Program Files (x86)\SmartBear\TestComplete 11\Bin\Extensions\Python\Python34\Lib\site-packages
I am not sure about TestExecute, but may be it can't find your modules?
Try to wrap your module imports in try/except:
try:
import yourModule
except ImportError as e:
Log.Error(e)