Here is an example that anyone can run on an example web page: b = Watir::Browser.new b.goto 'http://www.w3schools.com/js/tryit.asp?filename=tryjs_alert' view = b.frame(:id, 'viewIFRAME') view.button.click_no_wait
irb(main):082:0> b = Watir::Browser.new => #<Watir::IE:0x..f7368b76 url="about:blank" title=""> irb(main):083:0> b.goto 'http://www.w3schools.com/js/tryit.asp?filename=tryjs_alert' => 3.774377 irb(main):084:0> view = b.frame(:id, 'viewIFRAME') => #<Watir::Frame:0x405bfb66 located=false specifiers={:tag_name=>["frame", "iframe"], :id=>"viewIFRAME"}> irb(main):085:0> view.button.click_no_wait => "" On Friday, 5 October 2012 09:52:31 UTC+13, Paul wrote: > > Hi, I have just upgraded my framework to 1.9.3 and watir 4.0, I am using > watir-classic 3.2.0. I have been using click_no_wait but now it does not > work and I can't find the method in the source. element.rb no longer has > this method! > > If I can't solve this I will try to patch it in or downgrade watir. > > - thanks > -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. [email protected] http://groups.google.com/group/watir-general [email protected]
