Skip to content

Instantly share code, notes, and snippets.

View Jbur43's full-sized avatar

Jack Burum Jbur43

View GitHub Profile

Keybase proof

I hereby claim:

  • I am jbur43 on github.
  • I am jtburum2 (https://keybase.io/jtburum2) on keybase.
  • I have a public key ASBLW-dUKBWbZKvlFO7DA6LcCEJbwvLycGl_SVgA99dBvQo

To claim this, I am signing this object:

@Jbur43
Jbur43 / capybara cheat sheet
Created January 26, 2016 17:25 — forked from zhengjia/capybara cheat sheet
capybara cheat sheet
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')