On Thu, 17 May 2001 03:40:05 +0900 "Wayne Blair" <wayne.blair / relian.com> wrote: > Is there a wait or sleep method built into ruby? The following is an > example of usage. > There is a built in sleep method. > require 'win32ole' > > ie = WIN32OLE.new > ie.visible=true > ie.gohome > # have to wait because web page must be > #fully loaded to get document > while ie.busy do sleep 0.1 > end > doc = ie.document Mike.