Wednesday, October 6, 2010

IE test

require 'win32ole'
ie=WIN32OLE.new('InternetExplorer.Application')
ie.Visible=true
ie.Navigate('http://google.com/')
sleep(1) until ie.ReadyState==4
ie.text_field(:name, "q").set("Vijay Ramane")
ie.button(:name, "btnG").click
#ie.Quit

No comments:

Post a Comment