>class Watir::IE > attr_accessor error_checkers >end >$browser = IE.new
>And it throws me this output >undefined local variable or method `error_checkers' for Watir::IE:Class (NameError) I suspect the offender is the missing colon (:) before error_checkers in attr_accessor (it's expecting a symbol). Try: attr_accessor :error_checkers _______________________________________________ Wtr-general mailing list [email protected] http://rubyforge.org/mailman/listinfo/wtr-general
