Can you post the complete code for your unit tests? I notice the `ie` not found 
variable; I'm assuming you have either:
a) tried to create a Watir IE object like: "myIE = ie.start( "www.url.com" ) - 
in this case the Watir IE object must be capitalized
b) created your Watir IE object correctly like "myIE = IE.start( "www.url.com" 
) but make this variable only local to the "setup(()" method. If you define 
your ie variable in the setup method you must make it global, like $ie = 
IE.start( "www.url.com" ).

These are just some suggestions based on what I see here.

Hope this help,
Nathan Christie
---------------------------------------------------------------------
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=6256&messageID=17598#17598
_______________________________________________
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general

Reply via email to