Skip to content

Instantly share code, notes, and snippets.

@JoshCheek
Created November 3, 2010 22:20
Show Gist options
  • Select an option

  • Save JoshCheek/661817 to your computer and use it in GitHub Desktop.

Select an option

Save JoshCheek/661817 to your computer and use it in GitHub Desktop.
lightning talk idea
# fx must be started as follows
# /Applications/Firefox.app/Contents/MacOS/firefox-bin -jssh
# watir example
require 'firewatir'
fx = FireWatir::Firefox.new
fx.goto 'pastie.org'
text = fx.text_field :id , 'paste_body'
text.set "hello, world!"
# can show set or value several times here
button = fx.button :type ,'image'
button.click
theme = fx.select_list :id , 'tm_theme_picker'
theme.select "IDLE"
theme.select "Cobalt"
theme.select "Espresso Libre"
theme.select "All Hallow's Eve"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment