[wtr-general] Re: Including watir in ruby program

2009-01-30 Thread Super Kevy
the include also likes capitalization as include Watir --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Watir General group. To post to this group, send email to watir-general@googlegroups.com Before posting,

[wtr-general] Re: Including watir in ruby program

2009-01-29 Thread aidy lewis
Hi, What do you get with this? gem list --local watir and this? require 'rubygems' require 'watir' test_site = http://www.google.com/; ie=Watir::IE.new ie.goto test_site Aidy On 29/01/2009, malar malar.je...@gmail.com wrote: Hi, I successfully Installed Ruby 186.26 and

[wtr-general] Re: Including watir in ruby program

2009-01-29 Thread malar b
hi, c:/gem list --local watir this code Results ***LOCAL GEMS*** watir1.6.2 Automated Tool for web application if i run this code, i am getting the following error c:/ruby/lib/ruby/gems/1.8/gems/activesupport-1.0.0/lib/active_support/clean_logger.rb:5:in `remove_const': constant Logger::Format

[wtr-general] Re: Including watir in ruby program

2009-01-29 Thread aidy lewis
Hi, Not sure. Trying taking out require 'rubygems'. Otherwise 'gem update watir -y' Are you on Windows? Aidy On 29/01/2009, malar b malar.je...@gmail.com wrote: hi, c:/gem list --local watir this code Results ***LOCAL GEMS*** watir1.6.2 Automated Tool for web application if i run

[wtr-general] Re: Including watir in ruby program

2009-01-29 Thread Matt
Looks like you forgot to capitalize the module name in your include statement. include watir is incorrect, try include Watir, or even better remove the line altogether and use Watir::IE to get to the IE class. require 'rubygems' require 'watir' test_site = http://www.google.com/; ie =