On Aug 9, 10:44 am, Jeffrey Bowen <ja_bo... / yahoo.com> wrote: > I been teaching myself Ruby for three months now and > I've needed very Little help until now. I've been > working with text files using strings, array's, hash's > and CSV all with Little problem > > Now I've moved onto using the watir gem with no luck. > Unless I openwww.yahoo.comorwww.google.comI get > frame errors or the code will not exit. Am I just > missing something basic. Code same below. > > #ie = Watir::IE.start("http://www.yahoo.com/") #works > #ie = Watir::IE.start("http://tv.yahoo.com/") #no exit > #ie = > Watir::IE.start("http://finance.yahoo.com/")#frame > error > ie = Watir::IE.start("http://www.nascar.com/") #no > exit > > Jeff > > ____________________________________________________________________________________ > Sick sense of humor? Visit Yahoo! TV's > Comedy with an Edge to see what's on, when.http://tv.yahoo.com/collections/222 require 'watir' include Watir ie = IE.new ie.goto('http://finance.yahoo.com/') This works for me. Luis