Ranjith,
If you just want to check that the Status bar text is "Done"
then this loop will work, since Watir can read the Status text
in IE of Firefox.
# Loop until the status bar text is "Done"
while(browser.status != "Done") do
sleep(1)
end
Joe
On May 5, 10:47 pm, ranjith kumar <
ranjith....@gmail.com> wrote:
>
> I want my sctipt to wait til i could see *done* status in the status bar of
> my IE.