From: Jason Trebilcock Date: 2009-09-25T23:27:52+09:00 Subject: Re: Watir script, log into gmail --001636b2b8e7af6c31047467c0d1 Content-Type: text/plain; charset=ISO-8859-1 On Fri, Sep 25, 2009 at 8:41 AM, Avraham Tuvy wrote: > This is my first attempt with ruby/watir, the script below populates the > login and password but does not click the signIn button, please help. > > > require "watir" > require "test/unit" > require "win32ole" > > > class TC_Login < Test::Unit::TestCase > > $ie = Watir::IE.new > > def setup > $ie.goto("http://gmail.com") > > end > > def test_login > $ie.text_field(:id,"Email").set("milosh") #fake > $ie.text_field(:id,"Passwd").set("23gq") #fake > > ie.button(:name, "signIn").click > > > end > end > -- > Posted via http://www.ruby-forum.com/. > > Update the following: ie.button(:name, "signIn").click To be: $ie.button(:name, "signIn").click And while I'm at it, you might want to consider posting Watir-specific questions to the Watir group. http://groups.google.com/group/watir-general --001636b2b8e7af6c31047467c0d1--