We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34d27ed commit 86d795bCopy full SHA for 86d795b
1 file changed
pages/login-page.ts
@@ -17,7 +17,7 @@ export class LoginPage{
17
}
18
19
async fillEmail(email: string){
20
- await this.emailInput.fill('anchita.dogra@gmail.com');
+ await this.emailInput.fill(email);
21
22
23
async clickContinueButton(){
@@ -29,7 +29,7 @@ export class LoginPage{
29
30
31
async fillPassword(password: string){
32
- await this.passwordInput.fill('Pass123!');
+ await this.passwordInput.fill(password);
33
34
35
async doLogin(email: string, password: string){
0 commit comments