Update trailing spaces

Update UI component mainWindow_Password_textField
This commit is contained in:
femi 2022-07-13 09:29:51 +01:00 committed by Olufemi Ade-Olusile
parent f415e4ae3a
commit 4391d616b6
4 changed files with 158 additions and 158 deletions

View File

@ -30,7 +30,7 @@ class SignUpComponents(Enum):
NEW_PASSWORD_BUTTON: str = "mainWindow_New_password_PlaceholderText"
PASSWORD_INPUT: str = "loginView_passwordInput"
CONFIRM_PASSWORD: str = "mainWindow_Confirm_password_PlaceholderText"
PASSWORD_CONFIRM_INPUT: str = "mainWindow_inputValue_StyledTextField"
PASSWORD_CONFIRM_INPUT: str = "mainWindow_Password_textField"
CREATE_PASSWORD: str = "mainWindow_Create_password_StatusBaseText"
CONFIRM_PASSWORD_AGAIN: str = "mainWindow_Confirm_you_password_again_PlaceholderText"
FINALIZE_PASSWORD_STEP: str = "mainWindow_Finalise_Status_Password_Creation_StatusBaseText"

View File

@ -25,7 +25,7 @@ mainWindow_Confirm_password_PlaceholderText = {"container": statusDesktop_mainWi
mainWindow_Display_name_StatusBaseText = {"container": statusDesktop_mainWindow, "text": "Display name", "type": "StatusBaseText", "unnamed": 1, "visible": True}
mainWindow_nextBtn_StatusButton = {"container": statusDesktop_mainWindow, "id": "nextBtn", "type": "StatusButton", "unnamed": 1, "visible": True}
mainWindow_New_password_PlaceholderText = {"container": statusDesktop_mainWindow, "text": "New password", "type": "PlaceholderText", "unnamed": 1, "visible": True}
mainWindow_inputValue_StyledTextField = {"container": statusDesktop_mainWindow, "echoMode": 2, "id": "inputValue", "occurrence": 2, "passwordCharacter": "", "type": "StyledTextField", "unnamed": 1, "visible": True}
mainWindow_Password_textField = {"container": statusDesktop_mainWindow, "echoMode": 2, "id": "inputValue", "occurrence": 2, "passwordCharacter": "", "type": "StyledTextField", "unnamed": 1, "visible": True}
mainWindow_Rectangle = {"container": statusDesktop_mainWindow, "occurrence": 11, "type": "Rectangle", "unnamed": 1, "visible": True}
mainWindow_Create_password_StatusBaseText = {"container": statusDesktop_mainWindow, "text": "Create password", "type": "StatusBaseText", "unnamed": 1, "visible": True}
mainWindow_Confirm_you_password_again_PlaceholderText = {"container": statusDesktop_mainWindow, "text": "Confirm you password (again)", "type": "PlaceholderText", "unnamed": 1, "visible": True}

View File

@ -39,13 +39,13 @@ Feature: Status Desktop Sign Up
# Input wrong password format in both new password and confirmation input and verify create password button is not enabled
When user inputs the following <wrongpassword> with ui-component loginView_passwordInput
And user inputs the following <wrongpassword> with ui-component mainWindow_inputValue_StyledTextField
And user inputs the following <wrongpassword> with ui-component mainWindow_Password_textField
Then the following ui-component mainWindow_Create_password_StatusBaseText is not enabled
# Input right password format in new password input but incorrect in confirmation password input and verify create password button is not enabled
When user inputs the following <password> with ui-component loginView_passwordInput
And user inputs the following <wrongpassword> with ui-component mainWindow_inputValue_StyledTextField
And user inputs the following <wrongpassword> with ui-component mainWindow_Password_textField
Then the following ui-component mainWindow_Create_password_StatusBaseText is not enabled
Examples:
@ -61,7 +61,7 @@ Feature: Status Desktop Sign Up
# Input correct password format in both new password and confirmation input
When user inputs the following <password> with ui-component loginView_passwordInput
And user inputs the following <password> with ui-component mainWindow_inputValue_StyledTextField
And user inputs the following <password> with ui-component mainWindow_Password_textField
And user clicks on the following ui-component mainWindow_Create_password_StatusBaseText
# Input wrong password in final password input and verify password creation button is not enabled