Skip to content

Commit e73ffe2

Browse files
committed
Debugging test
1 parent 89fed00 commit e73ffe2

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

frontend/packages/dev-console/integration-tests/support/pages/add-flow/catalog-page.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ export const catalogPage = {
8282
throw new Error('Card is not available in Catalog');
8383
}
8484
}
85+
catalogPage.verifyPageTitle(type);
8586
},
8687
selectTemplateCategory: (templateCategoryTitle: string) => {
8788
const selector =

frontend/packages/dev-console/integration-tests/support/pages/app.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,7 @@ export const projectNameSpace = {
292292
// cy.testA11y('Create Project modal');
293293
cy.url().then(($url) => {
294294
if ($url.includes('topology/all-namespaces')) {
295+
cy.get('[data-test="page-heading"]', { timeout: 30000 }).should('exist');
295296
cy.get('.odc-namespaced-page__content').should('be.visible');
296297
} else if ($url.includes('topology/ns')) {
297298
cy.byLegacyTestID('item-filter').should('be.visible');

frontend/packages/integration-tests/views/details-page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const detailsPage = {
22
titleShouldContain: (title: string) => {
3-
cy.get('[data-test="page-heading"]', { timeout: 30000 }).should('be.visible');
3+
cy.get('[data-test="page-heading"]', { timeout: 30000 }).should('exist');
44
return cy.get('[data-test="page-heading"]').contains(title, { timeout: 30000 });
55
},
66
sectionHeaderShouldExist: (sectionHeading: string) =>

0 commit comments

Comments
 (0)