Skip to content

Commit

Permalink
Comments added
Browse files Browse the repository at this point in the history
  • Loading branch information
da-oleg-ignatiev committed Jun 4, 2024
1 parent 4cefac7 commit af0e67f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pages/login-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class LoginPage {

async goto() {
await this.page.goto('https://ss-spa-qa1.ottest.net/Authentication');
await expect(this.signInButton, '"Sign In" button is not displayed')
await expect(this.signInButton, '"Sign In" button is not displayed') // assertion
.toBeVisible({ timeout: 15000 });
}

Expand Down
2 changes: 1 addition & 1 deletion pages/portal-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class PortalPage {
// Add your methods and actions for the portal page here

async portalHeaderIsDisplayed() {
await expect(this.portalHeader, 'Portal header "ScoreSense" is not displayed')
await expect(this.portalHeader, 'Portal header "ScoreSense" is not displayed') // assertion
.toBeVisible({ timeout: 15000 });
}

Expand Down

0 comments on commit af0e67f

Please sign in to comment.