Forum Discussion

DKumar04's avatar
DKumar04
Contributor
5 years ago
Solved

How testcomplete works with scripts not being written inside the class?

My question is if I have written my scripts using python. Let consider the below example # example1.py def test():    print "hello world" # example2.py class sampletest:       def test():...
  • tristaanogre's avatar
    tristaanogre
    5 years ago

    Keep in mind... this is Python SCRIPT, not full Python.  Not everything needs to have a class to be able to execute.  You can use classes, but they are not required for execution of functions.