Capybara.md Capybara Actions # Anchor click_link 'Save' # Button click_button 'awesome' # Both above click_link_or_button 'Save' # Text (area) field fill_in 'Name', with: 'Content' # Checkbox check 'Content' uncheck 'Content' # Radio button choose 'Content' # Select option from select tag select 'Option', from: 'Label' # File input attach_file Rails.root.join('spec/fixture/some_file.png') Capybara