Skip to content

Commit a41937e

Browse files
committed
Update login.page.ts
1 parent 297ce3c commit a41937e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/pages/login.page.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,27 +23,27 @@ export class LoginPage extends BasePage {
2323

2424
async clickSignIn() {
2525
await this.signInButton().click();
26-
await this.waitForPageLoad();
26+
// await this.waitForPageLoad();
2727
}
2828

2929
async performSearch(searchTerm: string) {
3030
await this.searchBox().fill(searchTerm);
3131
await this.searchButton().click();
32-
await this.waitForPageLoad();
32+
// await this.waitForPageLoad();
3333
}
3434

3535
async navigateToImages() {
3636
await this.imagesLink().click();
37-
await this.waitForPageLoad();
37+
// await this.waitForPageLoad();
3838
}
3939

4040
async navigateToGmail() {
4141
await this.gmailLink().click();
42-
await this.waitForPageLoad();
42+
// await this.waitForPageLoad();
4343
}
4444

4545
async navigateToAdvancedSearch() {
4646
await this.advancedSearchLink().click();
47-
await this.waitForPageLoad();
47+
// await this.waitForPageLoad();
4848
}
4949
}

0 commit comments

Comments
 (0)