From ba7b12807c058a3638ed1287eb86137def17c170 Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Fri, 19 Jan 2024 21:14:35 +0300 Subject: [PATCH] Sign in by clicking login in the same form as username/password --- test/test_helper.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/test_helper.rb b/test/test_helper.rb index 9d06d2353..222e65764 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -243,9 +243,11 @@ module ActiveSupport def sign_in_as(user) visit login_path - fill_in "username", :with => user.email - fill_in "password", :with => "test" - click_on "Login", :match => :first + within "form", :text => "Email Address or Username" do + fill_in "username", :with => user.email + fill_in "password", :with => "test" + click_on "Login" + end end def session_for(user) -- 2.45.1