Internet explorer automation busy v/s readystate property
I am new to vbscript and while reading i found some code as Do While ie.busy stateString = stateString & " " & cstr(ie.readystate) loop do while ie.readystate <> 4 stateString = stateString & " " & ie.readystate loop so could anyone please let me know what is difference between the busy property and readystate property. From here : Michael Harris (MVP) wrote: [...] do until ie.readyState = 4 : wscript.sleep 10 : loop [...] Is there a reason to use do until ie.readyState = 4 : wscript.sleep 10 : loop instead of While ie.Busy : WScript.Sleep 10: Wend [...] Just based on past experience in lots