require "rails_helper" RSpec.describe "Test Features" do it "Displays the name of the app" do visit("/form") expect(page).to have_field("Age") expect(page).to have_button("Continue") end end