Skip to content

Instantly share code, notes, and snippets.

@aliang
Created May 26, 2011 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save aliang/994296 to your computer and use it in GitHub Desktop.
Save aliang/994296 to your computer and use it in GitHub Desktop.
watir basics that I always forget
require 'rubygems'
require 'watir'
#start the browser up
Watir::Browser.default = "firefox"
browser = Watir::Browser.start "http://www.weather.com/"
browser.text_field(:id, "whatwhereForm2").set("san diego, ca")
browser.button(:src,"http://i.imwx.com/web/common/searchbutton.gif").click
browser.link(:text, "10-Day").click
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment