Watir script, log into gmail

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

···

On Fri, Sep 25, 2009 at 8:41 AM, Avraham Tuvy <avtuvy@gmail.com> 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/\.