These buttons can be clicked by their unique values
pry(main)> click_button 'Click me!'
Input elements can also be selected by their 'name' attributes
pry(main)> check('first')
Try to click these buttons by their values. What error do you get? Look at using Capybara's `within` syntax
pry(main)> within('section .fourth') do
click_button "We're the same...but in different sections"
end
These buttons should be targetted by their IDs. Hint: this is easier than you think.
pry(main)> click_button "We're the same but we have different IDs"
These buttons should be targetted by their classes.
pry(main)> find('button.left').click
Try to fill in this form!
pry(main)> fill_in 'name', with: 'Bob'