Forum Discussion
1 Reply
- AlexKarasCommunity HeroHi Saroj,
See the "KeywordTest.Run" and "Running Keyword Tests" help topics.
Quote:
==========
Running Tests From ScriptsYou can run keyword tests from scripts. The statement that executes a test has the following syntax:
Call KeywordTests.Test_Name.Run(Param1, Param2, Param3 ...)
HereKeywordTestsis the name of the project item. Test_Name stands for the name of the desired test.Runis the method that is used to execute keyword tests. The method does not return any value.Param1, Param2 and so on are values of the test parameters (if the test has parameters). You should specify the values for parameters in the same order, in which the parameters are displayed on the Parameters page of the KeywordTest Editor.
If the parameter has a default value, you may skip it in the call. If the parameter does not have a default value, it cannot be skipped.
If a test does not have parameters, just use the empty braces after the
Runmethod name.
==========
P.S. I would highly recommend to read TestComplete's help documentation - it is very useful and informative (unlike documentation for a lot of other tools by different vendors).