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