fix(e2e): use [role=main] instead of main element
Switch from 'main' element selector to '[role="main"]' attribute selector for better compatibility with Headlamp's app structure. Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
+11
-11
@@ -14,19 +14,19 @@ test.describe('Polaris plugin smoke tests', () => {
|
|||||||
|
|
||||||
// SectionHeader renders a heading
|
// SectionHeader renders a heading
|
||||||
await expect(
|
await expect(
|
||||||
page.locator('main').getByRole('heading', { name: 'Polaris \u2014 Overview' })
|
page.locator('[role="main"]').getByRole('heading', { name: 'Polaris \u2014 Overview' })
|
||||||
).toBeVisible();
|
).toBeVisible();
|
||||||
|
|
||||||
// "Cluster Score" section exists with a percentage
|
// "Cluster Score" section exists with a percentage
|
||||||
await expect(page.locator('main').getByText('Cluster Score')).toBeVisible();
|
await expect(page.locator('[role="main"]').getByText('Cluster Score')).toBeVisible();
|
||||||
await expect(page.locator('main').getByText(/%/).first()).toBeVisible();
|
await expect(page.locator('[role="main"]').getByText(/%/).first()).toBeVisible();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('namespaces page renders table with namespace buttons', async ({ page }) => {
|
test('namespaces page renders table with namespace buttons', async ({ page }) => {
|
||||||
await page.goto('/c/main/polaris/namespaces');
|
await page.goto('/c/main/polaris/namespaces');
|
||||||
|
|
||||||
await expect(
|
await expect(
|
||||||
page.locator('main').getByRole('heading', { name: 'Polaris \u2014 Namespaces' })
|
page.locator('[role="main"]').getByRole('heading', { name: 'Polaris \u2014 Namespaces' })
|
||||||
).toBeVisible();
|
).toBeVisible();
|
||||||
|
|
||||||
// Table should have at least one row with a namespace button
|
// Table should have at least one row with a namespace button
|
||||||
@@ -52,14 +52,14 @@ test.describe('Polaris plugin smoke tests', () => {
|
|||||||
|
|
||||||
// Drawer should open and show the namespace name in the heading
|
// Drawer should open and show the namespace name in the heading
|
||||||
await expect(
|
await expect(
|
||||||
page.locator('main').getByRole('heading', { name: `Polaris \u2014 ${namespaceName}` })
|
page.locator('[role="main"]').getByRole('heading', { name: `Polaris \u2014 ${namespaceName}` })
|
||||||
).toBeVisible();
|
).toBeVisible();
|
||||||
|
|
||||||
// "Namespace Score" section should be present in drawer
|
// "Namespace Score" section should be present in drawer
|
||||||
await expect(page.locator('main').getByText('Namespace Score')).toBeVisible();
|
await expect(page.locator('[role="main"]').getByText('Namespace Score')).toBeVisible();
|
||||||
|
|
||||||
// Resources table should exist in drawer
|
// Resources table should exist in drawer
|
||||||
await expect(page.locator('main').getByRole('heading', { name: 'Resources' })).toBeVisible();
|
await expect(page.locator('[role="main"]').getByRole('heading', { name: 'Resources' })).toBeVisible();
|
||||||
|
|
||||||
// URL hash should be updated with namespace name
|
// URL hash should be updated with namespace name
|
||||||
await expect(page).toHaveURL(/\/polaris\/namespaces#/);
|
await expect(page).toHaveURL(/\/polaris\/namespaces#/);
|
||||||
@@ -77,7 +77,7 @@ test.describe('Polaris plugin smoke tests', () => {
|
|||||||
|
|
||||||
// Verify drawer is open
|
// Verify drawer is open
|
||||||
await expect(
|
await expect(
|
||||||
page.locator('main').getByRole('heading', { name: `Polaris \u2014 ${namespaceName}` })
|
page.locator('[role="main"]').getByRole('heading', { name: `Polaris \u2014 ${namespaceName}` })
|
||||||
).toBeVisible();
|
).toBeVisible();
|
||||||
|
|
||||||
// Press Escape key
|
// Press Escape key
|
||||||
@@ -85,7 +85,7 @@ test.describe('Polaris plugin smoke tests', () => {
|
|||||||
|
|
||||||
// Drawer should close (heading should not be visible anymore)
|
// Drawer should close (heading should not be visible anymore)
|
||||||
await expect(
|
await expect(
|
||||||
page.locator('main').getByRole('heading', { name: `Polaris \u2014 ${namespaceName}` })
|
page.locator('[role="main"]').getByRole('heading', { name: `Polaris \u2014 ${namespaceName}` })
|
||||||
).not.toBeVisible();
|
).not.toBeVisible();
|
||||||
|
|
||||||
// URL hash should be cleared
|
// URL hash should be cleared
|
||||||
@@ -105,10 +105,10 @@ test.describe('Polaris plugin smoke tests', () => {
|
|||||||
|
|
||||||
// Drawer should automatically open with the namespace details
|
// Drawer should automatically open with the namespace details
|
||||||
await expect(
|
await expect(
|
||||||
page.locator('main').getByRole('heading', { name: `Polaris \u2014 ${namespaceName}` })
|
page.locator('[role="main"]').getByRole('heading', { name: `Polaris \u2014 ${namespaceName}` })
|
||||||
).toBeVisible();
|
).toBeVisible();
|
||||||
|
|
||||||
// "Namespace Score" section should be present
|
// "Namespace Score" section should be present
|
||||||
await expect(page.locator('main').getByText('Namespace Score')).toBeVisible();
|
await expect(page.locator('[role="main"]').getByText('Namespace Score')).toBeVisible();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user