Re: [wtr-general] Using Watir::Simple methods

2010-01-28 Thread Ċ½eljko Filipin
On Thu, Jan 28, 2010 at 1:54 PM, Chandu80 wrote: > require 'watir/watir_simple' I think watir simple is not maintained any more. I guess it is broken. Why are you using it? Is this $ie.button(:name => "btnG").click much more complicated than this? $ie.click_button_with_name("btnG") We have a

[wtr-general] Using Watir::Simple methods

2010-01-28 Thread Chandu80
I have a code written in ruby as follows: require 'watir/ie' #require 'watir/process' require 'test/unit/assertions' require 'watir/watir_simple' #include Watir::Simple test_site = 'http://google.co.in' $ie = Watir::IE.new $ie.goto(test_site) $ie.maximize $ie.click_button_with_name("btnG") wher