Micro Focus QTP (UFT) Forums

Full Version: Infinit loop
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

If we use Do..While loop for infinit itereation and given execution, then how can we handle this by using VB Script?

Please somebody help me on this.....
Exit after your condition is achieved by using,
Do
If 'your condition match' then
Exit Do
End If
While 'whatever value you are waiting for'