Skip to content

Commit

Permalink
fix: use role tab
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreiffers committed Dec 18, 2024
1 parent a9ff003 commit 771b3d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/concept-catalog-e2e/src/page-object-model/detailPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ export default class DetailPage {
}

async expectTabs() {
await expect(this.page.getByRole('button', { name: 'Kommentarer' })).toBeVisible();
await expect(this.page.getByRole('button', { name: 'Endringshistorikk' })).toBeVisible();
await expect(this.page.getByRole('button', { name: 'Versjoner' })).toBeVisible();
await expect(this.page.getByRole('tab', { name: 'Kommentarer' })).toBeVisible();
await expect(this.page.getByRole('tab', { name: 'Endringshistorikk' })).toBeVisible();
await expect(this.page.getByRole('tab', { name: 'Versjoner' })).toBeVisible();
}

async expectRightColumnContent(concept: Concept) {
Expand Down

0 comments on commit 771b3d9

Please sign in to comment.