On Tuesday, January 7, 2014 10:48:45 PM UTC-8, Sanjeev Singh wrote: > > Hi All, > > I am getting the below error when I type the below code > irb > require "watir" > ie = Watir::Browser.new :ie > ie.goto "http://www.google.com" > #till this point it works fine > > ie.show_all_objects gives the error "NoMethodError: undefined method > 'show_all_objects' for #<Watir::Browser:0x28.............." > > Any help on this will be greatly appreciated. > > > thanks..!! >
The error means just what it says, the method you are trying to call is not defined, in other words you are trying to invoke a method that does not exist. What is it that you are trying to do/accomplish? -- -- 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] --- You received this message because you are subscribed to the Google Groups "Watir General" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
