From 035cbb909b5b39bf735fb215dd6fa79d1342c39b Mon Sep 17 00:00:00 2001 From: Ittay Stern Date: Thu, 26 Dec 2019 09:39:43 +0200 Subject: Use popup-sized viewport on Cypress tests where relevant The smaller viewport let more authentic tests, and a real-life look-and-feel. It is used on: - New Service popup - Audit-info of Instantiation Status - Templates modal Issue-ID: VID-724 Change-Id: I4f9928a3f730085bd66f5920a14b3a44ef5a23ba Signed-off-by: Ittay Stern --- .../cypress/integration/iFrames/service.popup.e2e.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'vid-webpack-master/cypress/integration/iFrames/service.popup.e2e.ts') diff --git a/vid-webpack-master/cypress/integration/iFrames/service.popup.e2e.ts b/vid-webpack-master/cypress/integration/iFrames/service.popup.e2e.ts index 7d1a1829d..83e6b4dbc 100644 --- a/vid-webpack-master/cypress/integration/iFrames/service.popup.e2e.ts +++ b/vid-webpack-master/cypress/integration/iFrames/service.popup.e2e.ts @@ -19,7 +19,7 @@ describe('Service popup', function () { cy.readFile('cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res1) => { res1.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].service.vidNotions.instantiationType = 'ALaCarte'; cy.setReduxState(res1); - cy.openIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true'); + cy.openPopupIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true'); cy.isElementContainsAttr('form-set', 'disabled'); cy.get('label').contains('Instance name:').should('not.have.class', 'required') .get('label').contains('Subscriber name:').should('have.class', 'required') @@ -36,14 +36,14 @@ describe('Service popup', function () { let isEcompNaming = false; res1.service.serviceHierarchy["2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd"].service.serviceEcompNaming = isEcompNaming.toString(); cy.setReduxState(res1); - cy.openIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true'); + cy.openPopupIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true'); cy.isElementContainsAttr('form-set', 'disabled'); cy.get('label').contains('Instance name:').should('have.class', 'required'); }); }); it('should contains basic selects with required astrix', function () { - cy.openIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true'); + cy.openPopupIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true'); cy.isElementContainsAttr('form-set', 'disabled'); cy.get('label').contains('Subscriber name:').should('have.class', 'required') .get('label').contains('Service type:').should('have.class', 'required') @@ -57,7 +57,7 @@ describe('Service popup', function () { }); it('should be able fill all selects', function () { - cy.openIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true'); + cy.openPopupIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true'); cy.selectDropdownOptionByText('subscriberName', 'SILVIA ROBBINS'); cy.selectDropdownOptionByText('serviceType', 'TYLER SILVIA'); @@ -76,7 +76,7 @@ describe('Service popup', function () { cy.readFile('cypress/support/jsonBuilders/mocks/jsons/emptyServiceRedux.json').then((res1) => { res1.service.categoryParameters.owningEntityList = []; cy.setReduxState(res1); - cy.openIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true'); + cy.openPopupIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true'); cy.get('.message').contains('No results for this request. Please change criteria.'); cy.get('form-general-error').contains('Page contains errors. Please see details next to the relevant fields.'); @@ -84,7 +84,7 @@ describe('Service popup', function () { }); it('when open service popup should show showPrevious button', () => { - cy.openIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true'); + cy.openPopupIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true'); cy.getElementByDataTestsId('ShowPreviousInstancesButton').contains('Previous Instantiation').click(); }) -- cgit 1.2.3-korg