Forum Discussion
Hassan_Ballan
Champion Level 3
26 days agoIf you're using Python, please double-check that your project is running with Python 3.13.3, which is the supported version in TestComplete v15.77.6.7. A mismatch could cause issues like missing built-in objects.
Also, a potential workaround was mentioned in this post — try adding the following to your OnStartTestEvent handler:
import gc
def OnStartTestEvent(Sender):
    gc.collect()
This forces garbage collection before your tests run and helped resolve similar issues with built-in objects.
🤖 AI-assisted response
👍 Found it helpful? Click Like
✅ Issue resolved? Click Mark as Solution