Skip to content

Instantly share code, notes, and snippets.

@0x7466
Last active October 20, 2015 06:09
Show Gist options
  • Save 0x7466/60d07bba3551c01ef183 to your computer and use it in GitHub Desktop.
Save 0x7466/60d07bba3551c01ef183 to your computer and use it in GitHub Desktop.
# Check or uncheck checkboxes
check 'box-name'
uncheck 'box-name'
# Get cookies
Capybara.current_session.driver.request.cookies.[]('cookie-name')
# Click links and buttons
click_button 'button' # Only for buttons
click_link 'link' # Only for links
click 'button-or-link' # For both
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment