I have a reservation search form that contains the following date_field helper:
<%= date_field(:reservation, :arrival_date) %>
How do I select a specific date for this date_field tag using Capybara?
I tried select "2014-01-01", from: "reservation_arrival_date"
in my spec but I get a Capybara::ElementNotFound:
error when running the spec.
Thanks in advance!