This is important to my project
All my methods are written inside class
This actually creates a problem as I am not able to call methods on project 'Test Items' page
Solved! Go to Solution.
These are scripts, not application code. While classes are useful in organizing the objects and such, in order for TestComplete to execute them, they need to be made available as a method or function external to the class. This can be done with a simple wrapper like
function runMyMethod(){ var myObject = new myClass(); myObject.Method(); }
These are scripts, not application code. While classes are useful in organizing the objects and such, in order for TestComplete to execute them, they need to be made available as a method or function external to the class. This can be done with a simple wrapper like
function runMyMethod(){ var myObject = new myClass(); myObject.Method(); }
User | Count |
---|---|
2 | |
2 | |
2 | |
1 | |
1 |
Subject | Author | Latest Post |
---|---|---|