Skip to content

Instantly share code, notes, and snippets.

View doug7410's full-sized avatar

Doug Steinberg doug7410

  • Agile Element
  • Coral Springs, FL
View GitHub Profile
@vajradog
vajradog / capybara_cheat_sheet.md
Last active October 9, 2017 23:34
capybara cheat sheet (capybara (2.4.4): May 2015)

Created this cheat-sheet for personal reference on May 17, 2015. For detailed documentation and updates you should visit https://github.com/jnicklas/capybara

###Navigating

visit('/projects') or visit '/projects'
visit(post_comments_path(post)) or visit post_comments_path(post)

###Clicking links and buttons click_link('id-of-link') click_link('Link Text')