2020-08-20 13:36:00 +00:00
|
|
|
export const LOGIN_SELECTORS = {
|
2022-02-11 11:28:55 +00:00
|
|
|
accountSettings: "[data-test-id=account-settings-button]",
|
2020-08-20 13:36:00 +00:00
|
|
|
emailAddressInput: "input[name='email']",
|
|
|
|
emailPasswordInput: "input[name='password']",
|
2022-02-11 11:28:55 +00:00
|
|
|
signInButton: "[data-test-id=submit]",
|
2023-01-03 08:18:56 +00:00
|
|
|
userMenu: "[data-test-id=userMenu]",
|
2022-02-11 11:28:55 +00:00
|
|
|
warningCredentialMessage: "[data-test-id=login-error-message]",
|
|
|
|
welcomePage: "[data-test-id=welcome-header]",
|
|
|
|
logOutButton: "[data-test-id='log-out-button']",
|
2021-12-05 15:03:29 +00:00
|
|
|
resetPasswordLink: "[data-test-id='reset-password-link']",
|
2023-01-03 08:18:56 +00:00
|
|
|
confirmPassword: "[name='confirmPassword']",
|
2020-08-20 13:36:00 +00:00
|
|
|
};
|