What are the loops used in Quick Test Professional ?

Showing Answers 1 - 4 of 4 Answers

satya

  • Dec 22nd, 2005
 

as like as win runner q.t.p allows FOR LOOP, WHILE LOOP, DO LOOP,IF CONDION

Munibala

  • Jan 17th, 2006
 

  Do while/Until

  ....

  Loop

  Do

  ....

  While/Until

  For Each element In group

  ....

  Loop

  For var In obj/array

  ....

  For i=1 To count Step By 1

  ....

  Next

  While condition

  ....

  Wend

ujwal kandimalla

  • Aug 7th, 2006
 

see we can use syntices in Vb script for loops

ex: for loop

for i=1 to 10

then

end for

ok so...on u can have

  Was this answer useful?  Yes

sudhakar2068

  • Oct 23rd, 2006
 

The loops in Quick Test Professional are the following like as Win Runner.

They are the following

If condition:

If condition

---------

---------

----------

end If

If else:

If condition then

-----------

else If condition then

------------

else

-----------

end If

while loop:

while condition
-----------

while end

for loop:

for i= 1 to n Step1-(postive)

Reverse loop:

for i= n to 1 step 1-(negative)

sudhakar kolla,

My email:kollasudhakar2005@yahoo.co.in.

My number:09819859346

  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