From bae7a355deae5b9b16ac0343d4ec13018963e900 Mon Sep 17 00:00:00 2001 From: Sara Weiss Date: Sun, 8 Dec 2019 14:47:42 +0200 Subject: Show previous instantiations button in new service modal e2e test Issue-ID: VID-724 Signed-off-by: Sara Weiss Change-Id: I0afa4fe8907c4e03630e15042188b794e4acfcc4 --- .../cypress/integration/iFrames/instantiationStatus.e2e.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vid-webpack-master/cypress/integration/iFrames/instantiationStatus.e2e.ts') diff --git a/vid-webpack-master/cypress/integration/iFrames/instantiationStatus.e2e.ts b/vid-webpack-master/cypress/integration/iFrames/instantiationStatus.e2e.ts index 9610d68fb..c510391cb 100644 --- a/vid-webpack-master/cypress/integration/iFrames/instantiationStatus.e2e.ts +++ b/vid-webpack-master/cypress/integration/iFrames/instantiationStatus.e2e.ts @@ -61,13 +61,13 @@ describe('Instantiation status', function () { it('should filter rows by filter text', function () { cy.openIframe('app/ui/#/instantiationStatus'); - cy.getElementByDataTestsId("instantiationStatusFilter").type("ComplexService"); + cy.getElementByDataTestsId("instantiation-status-filter").type("ComplexService"); cy.get('table#instantiation-status tbody tr').should('have.length', 2); }); it('should filter rows by url filter text', function () { cy.openIframe('app/ui/#/instantiationStatus?filterText=ComplexService'); - cy.getElementByDataTestsId("instantiationStatusFilter").should('have.value','ComplexService'); + cy.getElementByDataTestsId("instantiation-status-filter").should('have.value','ComplexService'); cy.get('table#instantiation-status tbody tr').should('have.length', 2); }); -- cgit 1.2.3-korg