The reason you're getting that error is because ````watir-classic```` has an 
````autoload```` statement for IE class, which loads all the code. The code is 
actually rudimentary and from the times of ````FireWatir````. It should be 
removed in the future, but currently you can do something like this if you're 
using only watir-classic:

````
require "watir"
Watir.driver = :classic
Watir.load_driver

# trigger autoload
Watir::IE

# your code
````

I've opened up a separate issue for removing ````autoload```` code 
https://github.com/watir/watir-classic/issues/47

---
Reply to this email directly or view it on GitHub:
https://github.com/watir/watir/issues/6#issuecomment-11196239
_______________________________________________
Wtr-development mailing list
Wtr-development@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-development

Reply via email to