Forum Discussion
3 Replies
- sastoweSuper ContributorWell to wait, you have some choices. The most straight forward is aqUtills.Delay... But one thing I have done in the past to wait to see if a state changes is
Do While True
If <whatever state indicates I can stop waiting> then
Log.Message ... whatwever I might want to sya
Exit Do '' restart here maybe?
else
aqUtils.Delay 3000, "Waiting to test state again"
end if
Loop
For info on rebooting try reading about
http://support.smartbear.com/viewarticle/30885/ - khanasmat_cseNew ContributorThanks Stephanie for the quick reply .
I will try this out . - hlalumiereRegular ContributorFrom what you ask what you need is a timeout not a delay. What kind of action are you doing?