[wtr-general] Watir cannot connect to IE running und er non-Admin account on ‘default’ desktop.

2009-09-25 Thread Shane
b/watir/ie-class.rb: 246:in `method_missing': Windows (WIN32OLERuntimeError) OLE error code: 80040154 in HRESULT error code:0x80020009 Exception occurred. from c:/ ruby/lib/ruby/gems/1.8/gems/watir-1.6.2/lib/watir/ie-class.rb:246:in "each" Which

[wtr-general] Re: Watir cannot connect to IE running under non-Admin account on ‘default’ desktop.

2009-09-28 Thread Shane
indow, and modify the 'eval_in_spawned_process' Watir function to use this handle for 'pc = Watir::IE.bind (iWebBrowserPtr)'. This now works fine. :) On Sep 28, 12:34 pm, Bret Pettichord wrote: > Shane, > > Thanks for the excellent description of the problems that

[wtr-general] Re: Difference b/w Click_no_wait and .Click!

2009-10-13 Thread Shane
p, I would recommend you use click!, because you don't have the overhead of starting up a new ruby process each time. And that has worked for me so far. I haven't used fireWatir, so can't answer for how that operates. Thanks, Shane. On Oct 11, 9:57 pm, Pallavi Sharma wrote: > Hi &

[wtr-general] Re: Difference b/w Click_no_wait and .Click!

2009-10-14 Thread Shane
The case I have encountered for using click!, is when 'click' doesn't return for a long time (or sometimes never depending on how buggy a web page or ad-servers are), and a 'click!' followed by a 'wait_until' to check the event success/fail is sufficient.