Skip to content

Commit

Permalink
Include ui specs
Browse files Browse the repository at this point in the history
  • Loading branch information
ebrett committed Oct 25, 2023
1 parent 550f6da commit 0d697f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/pages/sign_in.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ class SignIn < Base
# Authenticate using email and password
#
# @param email [String] login email address (default: [email protected])
# @param password [String] login password (default: StrongPassword)
# @param password [String] login password (default: StrongPassword12!@)
def with_email_and_password(email = nil, password = nil)
wait_until_header_visible

email ||= '[email protected]'
password ||= ENV.fetch('USER_PASSWORD', 'StrongPassword')
password ||= ENV.fetch('USER_PASSWORD', 'StrongPassword12!@')

email_field.set(email)
password_field.set(password)
Expand Down

0 comments on commit 0d697f3

Please sign in to comment.