diff options
author | Yoav Schneiderman <yoav.schneiderman@intl.att.com> | 2020-01-05 15:03:16 +0200 |
---|---|---|
committer | Yoav Schneiderman <yoav.schneiderman@intl.att.com> | 2020-01-06 13:04:17 +0200 |
commit | 39a8639ddd4f9821c207cfa53264a475dcca8cf2 (patch) | |
tree | 5c671033f1d16caacb1014042fef5f731f96a584 /vid-webpack-master/cypress/integration/iFrames/instantiation.templates.modal.e2e.ts | |
parent | a98e5f9165caf14f058d03cbc6749420adefe568 (diff) |
Hide Templates entry point when no instances
Issue-ID: VID-741
Signed-off-by: Yoav Schneiderman <yoav.schneiderman@intl.att.com>
Change-Id: I9f2c1879b30ed15b227cdd6189d14ef988bc3b1e
Signed-off-by: Yoav Schneiderman <yoav.schneiderman@intl.att.com>
Diffstat (limited to 'vid-webpack-master/cypress/integration/iFrames/instantiation.templates.modal.e2e.ts')
-rw-r--r-- | vid-webpack-master/cypress/integration/iFrames/instantiation.templates.modal.e2e.ts | 9 |
1 files changed, 7 insertions, 2 deletions
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 |