@@ -30,6 +30,7 @@ test.describe('login flows', () => {
3030
3131 const email = TestDataFactory . generateEmail ( ) ;
3232 const postLoginPage = await signupPage . submit ( email , TestDataFactory . phoneNumber , TestDataFactory . password ) ;
33+ await postLoginPage . awaitPage ( ) ;
3334 const profilePage = await postLoginPage . continue ( true ) ;
3435 await profilePage . awaitPage ( ) ;
3536
@@ -54,6 +55,7 @@ test.describe('login flows', () => {
5455
5556 const email = TestDataFactory . generateEmail ( ) ;
5657 const postLoginPage = await signupPage . submit ( email , TestDataFactory . phoneNumber , TestDataFactory . password ) ;
58+ await postLoginPage . awaitPage ( ) ;
5759 const profilePage = await postLoginPage . continue ( true ) ;
5860 await profilePage . awaitPage ( ) ;
5961 const loginPage2 = await profilePage . logout ( ) ;
@@ -79,6 +81,7 @@ test.describe('login flows', () => {
7981
8082 const email = TestDataFactory . generateEmail ( ) ;
8183 const postLoginPage = await signupPage . submit ( email , TestDataFactory . phoneNumber , TestDataFactory . password ) ;
84+ await postLoginPage . awaitPage ( ) ;
8285 const profilePage = await postLoginPage . continue ( true ) ;
8386 await profilePage . awaitPage ( ) ;
8487
@@ -108,6 +111,7 @@ test.describe('login flows', () => {
108111
109112 const email = TestDataFactory . generateEmail ( ) ;
110113 const postLoginPage = await signupPage . submit ( email , TestDataFactory . phoneNumber , TestDataFactory . password ) ;
114+ await postLoginPage . awaitPage ( ) ;
111115 const mfaPage = await postLoginPage . autoSkipAfterSignup ( ) . awaitPage ( ) ;
112116
113117 const authenticator = new AuthenticatorApp ( ) ;
@@ -133,6 +137,7 @@ test.describe('login flows', () => {
133137
134138 const email = TestDataFactory . generateEmail ( ) ;
135139 const postLoginPage = await signupPage . submit ( email , TestDataFactory . phoneNumber , TestDataFactory . password ) ;
140+ await postLoginPage . awaitPage ( ) ;
136141 const profilePage = await postLoginPage . continue ( true ) ;
137142 await profilePage . awaitPage ( ) ;
138143 expect ( await profilePage . awaitState ( ProfileStatus . ListWithPasskeys ) ) . toBeTruthy ( ) ;
0 commit comments