I looked at other posts regarding this and attempted all tips to fix it but am still getting the error. Can someone look at my code and give me an idea on why this I continue to get this error.
The .html code looks like
<% provide(:title, "Log in") %>
<h1>Log in</h1>
<h2>Note: authentication currently supports both a TAMU NetID or the use of CAS.</h2>
<h2>To access the CAS authentication system, click <%= link_to "here", new_member_session_path %></h2> <br />
<div class="row">
<div class="col-md-6 col-md-offset-3">
<%= form_for(:session, url: login_path) do |f| %>
<%= f.label :netid %>
<%= f.text_field :username, class: 'form-control' %>
<%= f.submit "Log in", class: "btn btn-primary" %>
<% end %>
</div>
</div>
My test looks like
Background:
Given I am on the home page
When I follow "Login"
And I fill in "Netid" with "admin"
And I press "Log in"
I have trie:
"Netid"
"Member[netid]"
"Member[:netid]"
":netid"
"netid"