Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/sanity/tests/model/recruiting/recruiting-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class RecruitingPage {
async checkApplicationsVisibility (): Promise<void> {
await this.applicationsLink().click()
await expect(this.page.locator('text=Applications >> nth=1')).toBeVisible()
expect(this.page.locator('text="APP-1"')).toBeDefined()
await expect(this.page.locator('text="APP-1"')).toBeVisible()
}

async verifyTalentSection (): Promise<void> {
Expand All @@ -129,8 +129,8 @@ export class RecruitingPage {
async navigateToVacanciesAndCheckSoftwareEngineer (): Promise<void> {
await this.vacanciesLink().click()
await this.softwareEngineerLink().click()
expect(this.page.locator('text=Software Engineer')).toBeDefined()
expect(this.page.locator('text="APP-1"')).toBeDefined()
await expect(this.page.locator('text=Software Engineer')).toBeVisible()
await expect(this.page.locator('text="APP-1"')).toBeVisible()
}

async navigateToGeneralChatAndContacts (): Promise<void> {
Expand Down
Loading