Thanks for responding and many thanks for the links...!!! Yes, I am new to Watir and my aim is to automate our application using Watir. I am just stuck at the second page of my application and could not able to locate the object I am looking for.
Here is what I got from the page's HTML code: <html <body> <div id = "context-wrapper"> <iframe..... ..................................... #[name= "ConcertoContext"] <html> <div id = "cpo-folder"> ......................#this is the 3rd div within the above <html> <div class = "cpo-cntent-wrapper"> ...#this is the 3rd <div> within the above <div> <div class = "cpo-content"> <iframe ..........................................#name="application-content" <html lang="en"> <frameset <frame .................................................#name="SearchFilter" <html> <body .................................................#id=SearchFilter <div ...................................................#class = "dt-filter filter" <form ...............................................#id="FilterForm" <table> <tbody> <tr> <td> .................................................#this is the second <td> within the above<tr> <script> <input ..............................................#name= "attribute.Name-given" NOTE: I am not able to locate the above highlighted in YELLOW object. That is the reason I was searching for all the objects so I will get to know all the elements, frames, tables etc. On Wednesday, January 8, 2014 7:04:11 AM UTC-5, Oscar.Rieken wrote: > > You are getting that error because you are calling a method that does not > exist. > I would suggest learning more about ruby. > > > On Wed, Jan 8, 2014 at 1:48 AM, Sanjeev Singh > <[email protected]<javascript:> > > 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..!! >> >> -- >> -- >> Before posting, please read http://watir.com/support. In short: search >> before you ask, be nice. >> >> [email protected] <javascript:> >> http://groups.google.com/group/watir-general >> [email protected] <javascript:> >> >> --- >> 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] <javascript:>. >> For more options, visit https://groups.google.com/groups/opt_out. >> > > -- -- 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.
