Skip to content

Commit

Permalink
LPD-32763 Back to english language after translation test
Browse files Browse the repository at this point in the history
  • Loading branch information
boton authored and brianchandotcom committed Sep 10, 2024
1 parent c08f32e commit bd3f332
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions modules/test/playwright/tests/blogs-web/blogEntry.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,18 @@ test(
.map((category) => category.name_i18n['ES-es'])
.join('/')}/${title}`
);

// change back to english language

await page
.locator('.alert-info', {
hasText: 'Información: This page is displayed in Spanish',
})
.waitFor();

await page
.getByRole('link', {name: 'Display the page in English'})
.click();
}
);

Expand Down

0 comments on commit bd3f332

Please sign in to comment.