I'm seeing the same error on my environment.  Here is the same code along with 
the error.

Code:

require 'rubygems'
require 'watir'   
include Watir
#require 'watir_ext' # extension to watir for 'visible?'
#include Watir
require 'test/unit'
require 'csv'


puts Watir::IE::VERSION  # check for WATIR version

class TC_recorded < Test::Unit::TestCase
def test_recorded
        ie = IE.new
        ie.goto('http://wtr.rubyforge.org/watir_user_guide.html')
        ie.button(:name, 'clickme').click
        ie.goto('http://wtr.rubyforge.org/watir_user_guide.html')
        ie.text_field(:name, 'typeinme').set('Watir World')
        end
end
_______________________________________________
Wtr-general mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-general

Reply via email to