From: Anton Khorev Date: Fri, 19 Jan 2024 18:14:35 +0000 (+0300) Subject: Sign in by clicking login in the same form as username/password X-Git-Tag: live~971^2 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/ba7b12807c058a3638ed1287eb86137def17c170 Sign in by clicking login in the same form as username/password --- 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)