Skip to content

Commit 331a552

Browse files
Merge pull request #486 from etmurasaki/fix-bvt
NO-JIRA: automation failed in the periodic job
2 parents cc50389 + 1f08ede commit 331a552

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

web/cypress/e2e/regression/01.reg_alerts.cy.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ describe('Regression: Monitoring - Alerts', () => {
297297
nav.tabs.switchTab('Silences');
298298
silencesListPage.shouldBeLoaded();
299299
listPage.filter.removeIndividualTag('Active');
300-
listPage.filter.removeIndividualTag( 'Pending');
300+
listPage.filter.removeIndividualTag('Pending');
301301
silencesListPage.filter.byName(`${ALERTNAME}`);
302302
listPage.filter.clickFilter(true,false);
303303
listPage.filter.selectFilterOption(false, 'Active', true);
@@ -317,7 +317,6 @@ describe('Regression: Monitoring - Alerts', () => {
317317
cy.log('3.8 Assert Kebab on Silence List page for Expired alert');
318318
silencesListPage.emptyState();
319319
listPage.filter.removeMainTag('Silence State');
320-
listPage.filter.removeMainTag('Silence State');
321320
listPage.filter.selectFilterOption(true, 'Expired', false);
322321
listPage.filter.selectFilterOption(false, 'Active', false);
323322
listPage.filter.selectFilterOption(false, 'Pending', true);

web/cypress/views/details-page.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ export const detailsPage = {
3737
clickInspectAlertPage: () =>{
3838
cy.log('detailsPage.clickInspectAlertPage');
3939
try {
40-
cy.byAriaLabel('Inspect').should('be.visible').click(); //pf-5 cy.byAriaLabel('View in Metrics').should('be.visible').click();
41-
// cy.get(`a[aria-label="Inspect"]` , { timeout: 10000 }).click();
40+
cy.byAriaLabel('Inspect').should('be.visible');
41+
cy.get(`a[aria-label="Inspect"]` , { timeout: 10000 }).click();
4242
} catch (error) {
4343
cy.log(`${error.message}`);
4444
throw error;

0 commit comments

Comments
 (0)