diff options
author | Ittay Stern <ittay.stern@att.com> | 2019-12-08 10:35:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-12-08 10:35:32 +0000 |
commit | 0bdd1969e46cd3347fb18fbd09c046ff7b7dd067 (patch) | |
tree | b4ba511feccb56b237fcc4e8a0a764cfc734c1e7 /vid-webpack-master/cypress/integration/iFrames | |
parent | f53a917032b6c71c3d2b8f536244d4ba2611c068 (diff) | |
parent | ef5e3b283ed1825e2409db2d89fefed8b606abe6 (diff) |
Merge "Show previous instantiations button in new service modal"
Diffstat (limited to 'vid-webpack-master/cypress/integration/iFrames')
-rw-r--r-- | vid-webpack-master/cypress/integration/iFrames/service.popup.e2e.ts | 8 |
1 files changed, 8 insertions, 0 deletions
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 d1d41d0d9..7d1a1829d 100644 --- a/vid-webpack-master/cypress/integration/iFrames/service.popup.e2e.ts +++ b/vid-webpack-master/cypress/integration/iFrames/service.popup.e2e.ts @@ -82,6 +82,14 @@ describe('Service popup', function () { cy.get('form-general-error').contains('Page contains errors. Please see details next to the relevant fields.'); }); }); + + it('when open service popup should show showPrevious button', () => { + cy.openIframe('/app/ui/#/servicePopup?serviceModelId=2f80c596-27e5-4ca9-b5bb-e03a7fd4c0fd&isCreate=true'); + cy.getElementByDataTestsId('ShowPreviousInstancesButton').contains('Previous Instantiation').click(); + + }) + + }); }); |