MM-54569 : Update maximum password length on UI to 72 characters (#26699)

Этот коммит содержится в:
Colton Shaw
2024-04-17 07:33:55 -04:00
коммит произвёл GitHub
родитель 072d9a9c19
Коммит 1530228308
13 изменённых файлов: 76 добавлений и 24 удалений

Просмотреть файл

@@ -46,7 +46,7 @@ export default class SignupPage {
this.usernameError = page.locator(
'text=Usernames have to begin with a lowercase letter and be 3-22 characters long. You can use lowercase letters, numbers, periods, dashes, and underscores.',
);
this.passwordError = page.locator('text=Must be 5-64 characters long.');
this.passwordError = page.locator('text=Must be 5-72 characters long.');
const newsletterBlock = page.locator('.check-input');
this.newsLetterCheckBox = newsletterBlock.getByRole('checkbox', {name: 'newsletter checkbox'});