Hi
WaitProperty – instruct QTP to wait the execution process until it matches with the object property value based on the specified time.
E.g.
name - property name
Welcome: Mercury Tours - property value
5000 - number of milli seconds to wait
Wait – Instruct QTP to forcibly wait for specified time period.
E.g. Wait(5) ‘5 Seconds
Exist – method is used to instruct QTP to wait the execution process based on the
specified time and returns Boolean value as per the object existence
E.g.
~Regards
WaitProperty – instruct QTP to wait the execution process until it matches with the object property value based on the specified time.
E.g.
Code:
Browser("Welcome: Mercury Tours").WaitProperty "name" "Welcome: Mercury Tours" 5000
name - property name
Welcome: Mercury Tours - property value
5000 - number of milli seconds to wait
Wait – Instruct QTP to forcibly wait for specified time period.
E.g. Wait(5) ‘5 Seconds
Exist – method is used to instruct QTP to wait the execution process based on the
specified time and returns Boolean value as per the object existence
E.g.
Code:
If Browser(“Welcome: Mercury Tours”).Exist(5) Then
<Code>
End If
~Regards