В моем тестовом файле spec.rb fill_in "order[message]", with: "Don't eat paint chips!"
терпит неудачу с этой ошибкой.
Capybara::ElementNotFound:
Unable to find field "order[message]" that is not disabled
Вот мой html.erb
<%= form_with model: @order, url: "/gift/orders", local: true do |form| %>
.
.
<div class="form-group col-md-12">
<%= form.label :message, "Note for the child" %>
<%= form.text_field :message, class: "form-control", :rows => "3" %>
<small id="passwordHelpBlock" class="form-text text-muted">
Optional
</small>
</div>
.
.
<% end %>
Любые идеи, почему мой тест не может прочитатьэлемент формы?