Which tsl stament that divides a test script into sections and inserts a status message in the test results for the previous section

Questions by rajsekhar

Showing Answers 1 - 3 of 3 Answers

Senthil Kumar P

  • Sep 29th, 2006
 

Hi

tl_step statement is used for this purpose .

Syntax

tl_step("Step name",0,"correct"); this is pass condition

tl_step("step name",1,"incorrect"); this is for fail condition

 

  Was this answer useful?  Yes

Jaiganesh Ramendran

  • Oct 3rd, 2006
 

divides a test script into sections and inserts a status message in the test results for the previous section.tl_step ( step_name, status, description );step_name the name of the test step. status sets whether the step passed or failed. Set to 0 for pass, or any other integer for failure.description a short explanation of the step.The tl_step function divides test scripts into sections and determines whether each section passes or fails. When the test run is completed, you view the test results in the Test Results window. The report displays a result (pass/fail) for each step you defined.When WinRunner is connected to a TestDirector project, the message is inserted in the TestDirector "step" table as well.

  Was this answer useful?  Yes

hi....

tl_step (step_name, status, description);

        Step_name: name of the test step

        Status: 0 for pass or 1 for fails

        Desc: description of the step

thanx....

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions