[Wtr-general] [question] access denied OLE error code:80070005
John Castellucci
johnc at testdev.net
Tue May 9 15:21:40 EDT 2006
>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
More information about the Wtr-general
mailing list