Re: [Wtr-general] Is there a way to over ride Watir's checking if IE is busy?

2007-02-02 Thread Nathan
Thanks for all of the tips. I finally figured out that my test was actually taking a long time after firing an event onmouseover for my menus on pages with streaming content. I don't know why that was happening, but a put timeout blocks around each of my operations, hovering over the menu,

[Wtr-general] Is there a way to over ride Watir's checking if IE is busy?

2007-02-01 Thread Nathan
I am trying to test a website that has streaming content, and it seems that because this content is streaming, IE never returns that it is no longer busy. Is there some way around this? I am unable to do anything on the site in these cases. Thanks, Nathan

Re: [Wtr-general] Is there a way to over ride Watir's checking if IE is busy?

2007-02-01 Thread Nathan
To add a little bit of information, when I use irb to test my script's actions, I don't get timeouts, but when I am running the script, which activates a javascript menu, then clicks on a link in that menu, and I am on a page that is streaming video, I continually get timeouts, even when the

Re: [Wtr-general] Is there a way to over ride Watir's checking if IE is busy?

2007-02-01 Thread John Lolis
Yes, i think this should work. I have never tried this and I can assure you that it will break way more things then it could ever fix :) module Watir class IE def wait puts 'hello' end end end