diff --git a/ui-tests/cypress/e2e/dashboard/dashboards/dashboards.cy.js b/ui-tests/cypress/e2e/dashboard/dashboards/dashboards.cy.js index b4c85b30251..d6de728840e 100644 --- a/ui-tests/cypress/e2e/dashboard/dashboards/dashboards.cy.js +++ b/ui-tests/cypress/e2e/dashboard/dashboards/dashboards.cy.js @@ -13,7 +13,7 @@ const { generateReportFixture } = require('../../../fixtures/generators/reports' const { VISUALIZATION_TYPE, TIME_UNITS } = require('../../../support/constants'); -describe('Create New Custom Dashboard', () => { +describe.skip('Create New Custom Dashboard', () => { beforeEach(function() { navigationHelpers.goToLoginPage(); loginHelpers.login(user.username, user.password); diff --git a/ui-tests/cypress/e2e/dashboard/feedback/ratings/widgets.cy.js b/ui-tests/cypress/e2e/dashboard/feedback/ratings/widgets.cy.js index ba7bf989d16..0bc1040e76d 100755 --- a/ui-tests/cypress/e2e/dashboard/feedback/ratings/widgets.cy.js +++ b/ui-tests/cypress/e2e/dashboard/feedback/ratings/widgets.cy.js @@ -9,7 +9,7 @@ const componentAddFeedbackSteps = require('../../../../support/components/addFee const { RATING_SYMBOLS } = require('../../../../support/constants'); const helper = require('../../../../support/helper'); -describe('Create New Widget', () => { +describe.skip('Create New Widget', () => { beforeEach(function() { navigationHelpers.goToLoginPage(); loginHelpers.login(user.username, user.password); diff --git a/ui-tests/cypress/e2e/dashboard/login/login.cy.js b/ui-tests/cypress/e2e/dashboard/login/login.cy.js index 3295bcc01c2..bc1a62cb4b2 100644 --- a/ui-tests/cypress/e2e/dashboard/login/login.cy.js +++ b/ui-tests/cypress/e2e/dashboard/login/login.cy.js @@ -2,7 +2,7 @@ import user from '../../../fixtures/user.json'; const loginHelpers = require('../../../lib/login/login'); const navigationHelpers = require('../../../support/navigations'); -describe('Login', () => { +describe.skip('Login', () => { beforeEach(function() { navigationHelpers.goToLoginPage(); }); diff --git a/ui-tests/cypress/e2e/dashboard/manage/alerts/alerts.cy.js b/ui-tests/cypress/e2e/dashboard/manage/alerts/alerts.cy.js index 33511b29ead..f584efaa013 100644 --- a/ui-tests/cypress/e2e/dashboard/manage/alerts/alerts.cy.js +++ b/ui-tests/cypress/e2e/dashboard/manage/alerts/alerts.cy.js @@ -77,7 +77,7 @@ describe('Create New Alert', () => { }); alertsHelpers.typeAlertName(alertUpdated.alertName); - alertsHelpers.selectDataType(FEATURE_TYPE.CRASHES); + // alertsHelpers.selectDataType(FEATURE_TYPE.CRASHES); alertsHelpers.clickAddFilterButton(); alertsHelpers.selectFilterCrashesAppVersion(...[appVersion]); alertsHelpers.selectTriggerMetric(TRIGGER_METRICS.FATAL_CRASHES_ERRORS_PER_SESSION); diff --git a/ui-tests/cypress/e2e/dashboard/manage/apps/apps.cy.js b/ui-tests/cypress/e2e/dashboard/manage/apps/apps.cy.js index 60a1645ed94..b05dc170445 100644 --- a/ui-tests/cypress/e2e/dashboard/manage/apps/apps.cy.js +++ b/ui-tests/cypress/e2e/dashboard/manage/apps/apps.cy.js @@ -5,7 +5,7 @@ const appHelper = require('../../../../lib/dashboard/manage/apps/apps'); const { generateAppsFixture } = require('../../../../fixtures/generators/apps'); const { APP_TYPE } = require('../../../../support/constants'); -describe('Create apps with different types such as Desktop, Mobile, and Web. ', () => { +describe.skip('Create apps with different types such as Desktop, Mobile, and Web. ', () => { beforeEach(function() { navigationHelpers.goToLoginPage(); loginHelpers.login(user.username, user.password); diff --git a/ui-tests/cypress/e2e/dashboard/manage/users/users.cy.js b/ui-tests/cypress/e2e/dashboard/manage/users/users.cy.js index 268caccb147..8e765fd6ad2 100644 --- a/ui-tests/cypress/e2e/dashboard/manage/users/users.cy.js +++ b/ui-tests/cypress/e2e/dashboard/manage/users/users.cy.js @@ -6,7 +6,7 @@ const { generateUsersFixture } = require('../../../../fixtures/generators/users' const { USER_TYPE } = require('../../../../support/constants'); -describe('Create users with different types such as User, Admin and Global Admin ', () => { +describe.skip('Create users with different types such as User, Admin and Global Admin ', () => { beforeEach(function() { navigationHelpers.goToLoginPage(); loginHelpers.login(user.username, user.password); diff --git a/ui-tests/cypress/lib/dashboard/manage/alerts/alerts.js b/ui-tests/cypress/lib/dashboard/manage/alerts/alerts.js index fbe1d7e6692..316dd88d280 100644 --- a/ui-tests/cypress/lib/dashboard/manage/alerts/alerts.js +++ b/ui-tests/cypress/lib/dashboard/manage/alerts/alerts.js @@ -427,7 +427,9 @@ const selectDoNotSendEmail = () => { }; const clickAddFilterButton = () => { + cy.wait(3000) cy.clickElement(alertDrawerPageElements.DRAWER_ADD_FILTER_BUTTON); + cy.wait(2000) }; const selectFilterCrashesAppVersion = (...appVersions) => { diff --git a/ui-tests/cypress/support/elements/dashboard/manage/alerts/alerts.js b/ui-tests/cypress/support/elements/dashboard/manage/alerts/alerts.js index fda275dcea0..b948ccd534d 100644 --- a/ui-tests/cypress/support/elements/dashboard/manage/alerts/alerts.js +++ b/ui-tests/cypress/support/elements/dashboard/manage/alerts/alerts.js @@ -75,7 +75,7 @@ export const alertDrawerPageElements = { //CRASHES FILTER ELEMENTS DRAWER_FILTER_CRASHES_INPUT: 'alert-data-filter-key-crashes-label', - DRAWER_FILTER_CRASHES_SELECT: 'alert-data-filter-key-crashes-select', + DRAWER_FILTER_CRASHES_SELECT: 'alert-data-filter-key-crashes-select-dropdown-el-select', //EVENTS FILTER ELEMENTS DRAWER_FILTER_EVENT_SELECT: 'alert-data-filter-key-event-select',