diff --git a/src/test/pages/AccountRegister.ts b/src/test/pages/AccountRegister.ts index 2002eab..b837674 100644 --- a/src/test/pages/AccountRegister.ts +++ b/src/test/pages/AccountRegister.ts @@ -38,9 +38,9 @@ export class AccountRegister { }; public async enterUserDetails ():Promise { - await this.registrationPageLocators.firstName().fill('Test 2'); - await this.registrationPageLocators.lastName().fill('Test 3'); - await this.registrationPageLocators.emailAddress().first().fill('tslldasddas@test.com') + await this.registrationPageLocators.firstName().fill('John'); + await this.registrationPageLocators.lastName().fill('Test'); + await this.registrationPageLocators.emailAddress().first().fill('new22username220@test.com') await this.registrationPageLocators.password().first().fill('Te345435345345!@#!@#st'); await this.registrationPageLocators.confirmPass().fill('Te345435345345!@#!@#st'); await pageFixture.page.keyboard.press('PageDown'); diff --git a/src/test/pages/UserLogin.ts b/src/test/pages/UserLogin.ts index a568bef..874b558 100644 --- a/src/test/pages/UserLogin.ts +++ b/src/test/pages/UserLogin.ts @@ -27,7 +27,7 @@ export class LoginUser { }; public async userEntersCorrectCredentials():Promise{ - await this.userLoginLocators.emailAddress().first().fill('testemail@test.com'); + await this.userLoginLocators.emailAddress().first().fill('new22username220@test.com'); await this.userLoginLocators.password().first().fill('Te345435345345!@#!@#st'); await this.userLoginLocators.signInUserBtn().first().click(); };