Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am robpark on github.
* I am robpark (https://keybase.io/robpark) on keybase.
* I have a public key ASDisliwLouP_dOIB63kI-nJrPdcePG9_cChngOC8YX2swo
To claim this, I am signing this object:
@robpark
robpark / gist:a4ef13ccb59b7001ee36
Last active August 29, 2015 14:13
current aliases
alias aa='git add --all'
alias be='bundle exec'
alias bi='bundle install'
alias bu='bundle update'
alias ci='git commit'
alias co='git checkout'
alias dev-claims='ssh 54.86.124.58'
alias dev-portal='ssh -i ~/.ssh/eyenetra-dev.pem ec2-user@dev-portal.eyenetra.com'
alias dev-portal-api='ssh -i ~/.ssh/eyenetra-dev.pem ec2-user@dev-portal-api.eyenetra.com'
alias e='ember'
@robpark
robpark / Page Objects
Last active December 15, 2015 08:38
Notes for a code read at the Boston Software Craftsmanship meeting on 4/1/2013.
Page Objects
"Within your web app's UI there are areas that your tests interact with.
A Page Object simply models these as objects within the test code.
This reduces the amount of duplicated code and means that if the UI changes,
the fix need only be applied in one place."
Page-object gem is used with Cucumber (ruby) either testing via watir or selenium
--- usage snippet ---