-
Notifications
You must be signed in to change notification settings - Fork 44.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
0 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,6 @@ export class LoginPage { | |
await passwordInput.waitFor({ state: "visible" }); | ||
await passwordInput.fill(password); | ||
|
||
// Check terms | ||
const termsCheckbox = this.page.getByLabel("I agree to the Terms of Use"); | ||
await termsCheckbox.waitFor({ state: "visible" }); | ||
await termsCheckbox.click(); | ||
|
||
// TODO: This is a workaround to wait for the page to load after filling the email and password | ||
const emailInput2 = this.page.getByPlaceholder("[email protected]"); | ||
await emailInput2.waitFor({ state: "visible" }); | ||
|