Skip to content

Commit 86d795b

Browse files
committed
actually use vars
1 parent 34d27ed commit 86d795b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pages/login-page.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class LoginPage{
1717
}
1818

1919
async fillEmail(email: string){
20-
await this.emailInput.fill('anchita.dogra@gmail.com');
20+
await this.emailInput.fill(email);
2121
}
2222

2323
async clickContinueButton(){
@@ -29,7 +29,7 @@ export class LoginPage{
2929
}
3030

3131
async fillPassword(password: string){
32-
await this.passwordInput.fill('Pass123!');
32+
await this.passwordInput.fill(password);
3333
}
3434

3535
async doLogin(email: string, password: string){

0 commit comments

Comments
 (0)