Skip to content

Commit

Permalink
Adding fixes to titles
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalo-diamend committed Sep 24, 2024
1 parent 89da472 commit 9f7b1f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pageObjects/blogPage/blogPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class BlogPage {
await this.page.goBack()
await expect(this.page.getByRole('link', { name: 'Agile QA & Dev Teams in Scrum' })).toBeVisible();
await this.page.getByRole('link', { name: 'Agile QA & Dev Teams in Scrum' }).click();
await expect(this.page.getByText('Agile', { exact: true })).toBeVisible();
await expect(this.page.getByText('Agile', { exact: true }).first()).toBeVisible();
await expect(this.page.getByRole('heading', { name: 'QA & Dev Teams in Scrum Cycles' })).toBeVisible();
await expect(this.page.locator('.c-blog-post-image')).toBeVisible();
await this.page.goBack()
Expand Down Expand Up @@ -146,7 +146,7 @@ class BlogPage {
await this.page.goBack()
await expect(this.page.getByRole('link', { name: 'Blockchain DevSecOps- What is' })).toBeVisible();
await this.page.getByRole('link', { name: 'Blockchain DevSecOps- What is' }).click();
await expect(this.page.getByText('Blockchain', { exact: true })).toBeVisible();
await expect(this.page.getByText('Blockchain', { exact: true }).first()).toBeVisible();
await expect(this.page.getByRole('heading', { name: 'DevSecOps- What is it, and' })).toBeVisible();
await expect(this.page.locator('.c-blog-post-image')).toBeVisible();
await this.page.goBack()
Expand Down

0 comments on commit 9f7b1f5

Please sign in to comment.