On Tue, Oct 9, 2012 at 4:02 AM, Joshua Moore <[email protected]> wrote: > require 'watir' > ie = Watir::IE.new > NameError: uninitialized constant Watir::IE
Versions of Ruby and Watir would help. I would try a couple of things: ie = Watir::Browser.new instead of ie = Watir::IE.new Also, adding this to the top of the file could help: require "rubygems" Željko -- filipin.eu -- 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]
