Update the login cucumber steps to match the new UI

Removes the colon for the checkbox label since the position of the
checkbox and the text on the UI has changed.
This commit is contained in:
Matt Rogers 2015-11-29 10:03:35 -06:00
parent 89506dbeb7
commit 37c61fa60a

View file

@ -7,7 +7,7 @@ end
When /^I submit the login form as user "([^\"]*)" with password "([^\"]*)"$/ do |username, password|
fill_in 'Login', :with => username
fill_in 'Password', :with => password
uncheck "Stay logged in:"
uncheck "Stay logged in"
click_button "Sign in"
end