From 39460af4d75136c757dc716abfd030494aa24f5b Mon Sep 17 00:00:00 2001 From: "miriam.aparicio" Date: Fri, 25 Oct 2024 11:21:27 +0100 Subject: [PATCH] change role user login to check if issue is with permissions --- .../cypress/e2e/storage_explorer/storage_explorer.cy.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x-pack/plugins/observability_solution/apm/ftr_e2e/cypress/e2e/storage_explorer/storage_explorer.cy.ts b/x-pack/plugins/observability_solution/apm/ftr_e2e/cypress/e2e/storage_explorer/storage_explorer.cy.ts index 0d7d6a275c52a..b3b11f7122f56 100644 --- a/x-pack/plugins/observability_solution/apm/ftr_e2e/cypress/e2e/storage_explorer/storage_explorer.cy.ts +++ b/x-pack/plugins/observability_solution/apm/ftr_e2e/cypress/e2e/storage_explorer/storage_explorer.cy.ts @@ -65,7 +65,7 @@ describe('Storage Explorer', () => { describe('When navigating to storage explorer with the required permissions', () => { beforeEach(() => { - cy.loginAsMonitorUser(); + cy.loginAsEditorUser(); cy.visitKibana(storageExplorerHref); }); @@ -109,7 +109,7 @@ describe('Storage Explorer', () => { cy.intercept({ pathname: endpoint }).as(aliasName); }); - cy.loginAsMonitorUser(); + cy.loginAsEditorUser(); cy.visitKibana(storageExplorerHref); }); @@ -164,7 +164,7 @@ describe('Storage Explorer', () => { cy.intercept({ pathname: endpoint }).as(aliasName); }); - cy.loginAsMonitorUser(); + cy.loginAsEditorUser(); cy.visitKibana(storageExplorerHref); });