Forum Discussion
Hi Colin
Thanks for Your Response i have developed the Script in functions and now i want to call those functions in the Script where i can call and now can i call these methods please let me i am very new to Test Complete i am learning through smart Bear
I have observed one thing from my Recording and Hand coding When i convert the Recording Steps into Script i am getting the Run option and Routines also loading with Manual Scenario name
When i am Developing hand coding i am not getting Run option and Routines are also not loading in my script Unit
Please help me out on this issue a great thankful in Advance
Using the user interface, you can only interactively Run script routines which take no arguments. In the Code Editor, if you put the cursor in the routine and right-click, only the no-argument routines will have the "Run Current Routine" option enabled. If you right-click on the script file in the Project Workspace, the Run option is presented only if there are suitable routines in the script file.
function NoArgs() { /* suitable */ }
function OneArg(arg) { /* not suitable */ }