From 39a8639ddd4f9821c207cfa53264a475dcca8cf2 Mon Sep 17 00:00:00 2001 From: Yoav Schneiderman Date: Sun, 5 Jan 2020 15:03:16 +0200 Subject: Hide Templates entry point when no instances Issue-ID: VID-741 Signed-off-by: Yoav Schneiderman Change-Id: I9f2c1879b30ed15b227cdd6189d14ef988bc3b1e Signed-off-by: Yoav Schneiderman --- .../integration/iFrames/instantiation.templates.modal.e2e.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'vid-webpack-master/cypress/integration/iFrames/instantiation.templates.modal.e2e.ts') diff --git a/vid-webpack-master/cypress/integration/iFrames/instantiation.templates.modal.e2e.ts b/vid-webpack-master/cypress/integration/iFrames/instantiation.templates.modal.e2e.ts index 73d311555..0db1b099a 100644 --- a/vid-webpack-master/cypress/integration/iFrames/instantiation.templates.modal.e2e.ts +++ b/vid-webpack-master/cypress/integration/iFrames/instantiation.templates.modal.e2e.ts @@ -71,7 +71,7 @@ describe('Template', () => { cy.route(Cypress.config('baseUrl') + "/getuserID", 'us16807000'); - cy.openPopupIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true'); + cy.openPopupIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true&hasTemplate=true'); }); @@ -117,10 +117,15 @@ describe('Template', () => { cy.getElementByDataTestsId('filterByUserIdTestId').click(); cy.get('.member-table-row').should('have.length', 1); + + // navigate to service modal -> should show Template button + cy.getElementByDataTestsId('startFromScratchButton').click().then(()=>{ + cy.getElementByDataTestsId('templateButton').should('be.visible') + }); + }); it('clicking on load template button, go to expected url', function () { - cy.getElementByDataTestsId('templateButton').contains('Template') .getElementByDataTestsId('templateButton').click({force: true}) // Open template Modal -- cgit 1.2.3-korg