Forum Discussion
rraghvani
Champion Level 3
1 month agoThe latest version of TestComplete comes with Python 3.13. Python has made a number of changes. One of them is treating global as regular scoped objects, which has impacted Python scripts used in TestComplete. See https://support.smartbear.com/testcomplete/docs/scripting/specifics/python_tc_globalobjects.html for more information. You need to update your Python scripts to accommodate this change. Here's an example,
The old way no longer works as global are now treated as regular scoped objects.The new way, using import aqDateTimeOr passing aqDateTime works.