fix selection if identifiers for login POM in Playwright tests

This commit is contained in:
mahula 2022-07-18 22:26:47 +02:00
parent 9860a0509d
commit e8bcda810a

View File

@ -11,8 +11,8 @@ export class LoginPage {
this.page = page;
this.url = './login';
this.emailInput = page.locator('id=Email-input-field');
this.passwordInput = page.locator('id=Passwort-input-field');
this.submitBtn = page.locator('text=Anmeldung');
this.passwordInput = page.locator('id=Password-input-field');
this.submitBtn = page.locator('text=Login');
}
async goto() {