Created
November 3, 2010 22:20
-
-
Save JoshCheek/661817 to your computer and use it in GitHub Desktop.
lightning talk idea
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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