Skip to content

Instantly share code, notes, and snippets.

@leviwilson
Created January 31, 2013 14:36
Show Gist options
  • Save leviwilson/4683251 to your computer and use it in GitHub Desktop.
Save leviwilson/4683251 to your computer and use it in GitHub Desktop.
Example Furter screen definition
class Login
include Furter
text(:username, :label => 'UsernameAccessibilityId')
text(:password, :label => 'PasswordAccessibilityId')
button(:login, :text => 'Login')
end
include Furter::Navigation
on(Login) do |screen|
screen.username = 'dude_fella'
screen.password = 'secret'
screen.login
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment