marklar said about 6 years ago on Feature Testing with Capybara :
Thanks for the great episode. I know you mentioned that once you've got it all set up it is quite similar to doing system tests (as system tests use Capybara) but are there any plans for an episode on getting set up with system tests, differences between what was implemented in this video (feature tests), and best practices?

marklar said about 6 years ago on Feature Testing with Capybara :
I just realised that episode 100 covers the difference between feature tests and system tests.

oalbacha said about 5 years ago on Feature Testing with Capybara :
thanks for this episode, very helpful! However, I have the following code: html erb ``` Name
``` spec ``` it "allows deleting of existing reservation takers" do restaurant = create(:restaurant, staff_names: [{"name"=>"Marc Jeffrey", "pin"=>""}]) visit restaurant_users_path fill_in "restaurant[staff_names][][name]", match: :first, with: "Nezar Khadem" click_on "Save Reservation Takers" within(first("td a.delete-taker")) do click_link('-') expect(page).not_to have_css("a.delete-taker", text: "-") end end end ``` the view looks like this: ![](https://pasteboard.co/I9VzyK4.jpg) How can I test the deleting of the user?

Rejka Permana said about 4 years ago on Feature Testing with Capybara :
Can you tell me what version you're using?


David Kimura PRO said about 4 years ago on Feature Testing with Capybara :
  Version of Capybara or Rails?

David Kimura PRO said about 4 years ago on Feature Testing with Capybara :
capybara (3.2.1)
rails (5.1.6)

richstone.io said over 3 years ago on Feature Testing with Capybara :
nice overview :)

Login to Comment