> ## Main script snippet: > ... > # open the IE browser > $ie = IE.new > # A) Walk the Public Pages. => Need to Trap this so > the > something_went_wrong" variable works correctly > page_set_to_check( walk_Public_Pages ) > --- > > # Here's the page_set_to_check() method: > > module site_walkabout_methods > > def page_set_to_check( page_set ) > begin > page_set > rescue => e > $something_went_wrong = 'Yes' > write_status > > end
I'm a touch confused by this, what is page_set? My first reaction is to say that somewhere deeper down in your code an exception is begin thrown and is silently beginning handled thus said function returns even though things didn't work. The only reason I'm guessing this is because of the way you handle this exception. --------------------------------------------------------------------- Posted via Jive Forums http://forums.openqa.org/thread.jspa?threadID=6079&messageID=17017#17017 _______________________________________________ Wtr-general mailing list [email protected] http://rubyforge.org/mailman/listinfo/wtr-general
