File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ async function registerNewUser(page: Page) {
26
26
await page . getByPlaceholder ( "Password" ) . first ( ) . fill ( password ) ;
27
27
await page . getByPlaceholder ( "Password (again)" ) . click ( ) ;
28
28
await page . getByPlaceholder ( "Password (again)" ) . fill ( password ) ;
29
- await page . getByRole ( "button" , { name : "Sign Up " } ) . click ( ) ;
29
+ await page . getByRole ( "button" , { name : "Sign Up" } ) . click ( ) ;
30
30
await page . getByLabel ( "First Name" ) . click ( { force : true } ) ;
31
31
await page . getByLabel ( "First Name" ) . fill ( firstname ) ;
32
32
await page . getByLabel ( "Last Name" ) . click ( { force : true } ) ;
@@ -69,7 +69,7 @@ async function gotoAndLogin(page: Page) {
69
69
await page . getByPlaceholder ( "Email address" ) . fill ( "[email protected] " ) ;
70
70
await page . getByPlaceholder ( "Password" ) . click ( ) ;
71
71
await page . getByPlaceholder ( "Password" ) . fill ( "password" ) ;
72
- await page . getByRole ( "button" , { name : "Sign In " } ) . click ( ) ;
72
+ await page . getByRole ( "button" , { name : "Sign In" } ) . click ( ) ; // GitHub sign in button
73
73
await page . getByRole ( "button" , { name : TEST_USER_INITIALS } ) . waitFor ( { state : "visible" } ) ;
74
74
75
75
}
You can’t perform that action at this time.
0 commit comments