From 37c61fa60a2b699645f8d88b6108ef8621cf6996 Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Sun, 29 Nov 2015 10:03:35 -0600 Subject: [PATCH] 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. --- features/step_definitions/login_steps.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/step_definitions/login_steps.rb b/features/step_definitions/login_steps.rb index d3332e24..52e11947 100644 --- a/features/step_definitions/login_steps.rb +++ b/features/step_definitions/login_steps.rb @@ -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