[wtr-general] Re: Watir doesn't wait for redirect to complete on IE6

2010-11-16 Thread dimovich
Ok... I think I figured it out. This wasn't the default IE6 behaviour. Windows Update installed some patches that didn't require a reboot... and IE got to behave this way... A reboot fixed it, but I think this should raise some questions. On Nov 16, 6:32 pm, dimovich wrote: > The

[wtr-general] Re: Watir doesn't wait for redirect to complete on IE6

2010-11-16 Thread dimovich
sleep 30 after goto and hope that it redirects in the meantime :). I will investigate further this issue and see if I find anything useful. On Nov 16, 5:46 pm, Željko Filipin wrote: > On Tue, Nov 16, 2010 at 4:44 PM, dimovich wrote: > > Yes, IE6 redirects just fine. > > Did y

[wtr-general] Re: Watir doesn't wait for redirect to complete on IE6

2010-11-16 Thread dimovich
Yes, IE6 redirects just fine. On Nov 16, 5:31 pm, Željko Filipin wrote: > On Tue, Nov 16, 2010 at 4:20 PM, dimovich wrote: > > If by manually you mean irb > > No, I mean by doing it without Watir. Open browser, go to the page with IE6 > and see does it redirect. > > Že

[wtr-general] Re: Watir doesn't wait for redirect to complete on IE6

2010-11-16 Thread dimovich
e have been redirected to has loaded. I'm talking about 302 redirect. On Nov 16, 3:51 pm, Željko Filipin wrote: > On Tue, Nov 16, 2010 at 1:07 PM, dimovich wrote: > > On __IE6___ the 'click' call will fail because Watir cannot find the > > link > > (redirect ha

[wtr-general] Re: Watir doesn't wait for redirect to complete on IE6

2010-11-16 Thread dimovich
Sorry for mistakes, it must be: On __IE6___ the 'click' call will fail because Watir cannot find the link (redirect hasn't finished yet so this is expected). On IE8 everything works just fine. On Nov 16, 2:06 pm, dimovich wrote: > It's basically: > > ie.goto &#

[wtr-general] Re: Watir doesn't wait for redirect to complete on IE6

2010-11-16 Thread dimovich
Željko Filipin wrote: > On Tue, Nov 16, 2010 at 12:05 PM, dimovich wrote: > > On IE6 when requesting a page that redirects Watir will return > > imediately. On IE8 Watir will wait for redirect to complete. Did > > anybody else bump into this? > > Please show us the code.

[wtr-general] Re: Watir doesn't wait for redirect to complete on IE6

2010-11-16 Thread dimovich
Željko Filipin wrote: > On Tue, Nov 16, 2010 at 12:05 PM, dimovich wrote: > > On IE6 when requesting a page that redirects Watir will return > > imediately. On IE8 Watir will wait for redirect to complete. Did > > anybody else bump into this? > > Please show us the code.

[wtr-general] Watir doesn't wait for redirect to complete on IE6

2010-11-16 Thread dimovich
Greetings All, On IE6 when requesting a page that redirects Watir will return imediately. On IE8 Watir will wait for redirect to complete. Did anybody else bump into this? Thanks. -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-general@

[wtr-general] Re: Hover link which doesn't have "onmouse*" event handler

2010-11-05 Thread dimovich
Found the solution: Watir.autoit.MouseMove(my_link.document.getBoundingClientRect.left.to_i +1,my_link.document.getBoundingClientRect.top+1) On Nov 5, 3:41 pm, Željko Filipin wrote: > On Fri, Nov 5, 2010 at 2:34 PM, dimovich wrote: > > But how do I call this 'mouseover&#x

[wtr-general] Re: Hover link which doesn't have "onmouse*" event handler

2010-11-05 Thread dimovich
On Nov 5, 2:57 pm, Željko Filipin wrote: > On Fri, Nov 5, 2010 at 1:53 PM, dimovich wrote: > > How can I hover this link? fire_event('onmouseover') doesn't work. > > I guess you have to fire another event: > > http://stackoverflow.com/questions/3787555/how-t

[wtr-general] Hover link which doesn't have "onmouse*" event handler

2010-11-05 Thread dimovich
Greetings All, I have a link: http://google.com"; target=_blank tabIndex=8>Google How can I hover this link? fire_event('onmouseover') doesn't work. Couldn't find any info on this so far. Thanks! -- Before posting, please read http://watir.com/support. In short: search before you ask, be ni