diff options
author | Einat Vinouze <einat.vinouze@intl.att.com> | 2020-03-03 16:15:39 +0200 |
---|---|---|
committer | Einat Vinouze <einat.vinouze@intl.att.com> | 2020-03-08 11:43:12 +0200 |
commit | 742d6d369b761220e565f39f2fa09413141ad93f (patch) | |
tree | c3f48794abab6cedb5d698b75b2fe525a56c7958 /vid-webpack-master/cypress/support/steps/fill.network.step.ts | |
parent | f7c41b1c4aeea09e67c8bb88f39d15e02cd1708f (diff) |
allow platform multi-selection for network
Issue-ID: VID-785
Change-Id: I4e6a4c2f0dc8c0e11f2571eec0789ad5672a9147
Signed-off-by: Einat Vinouze <einat.vinouze@intl.att.com>
Diffstat (limited to 'vid-webpack-master/cypress/support/steps/fill.network.step.ts')
-rw-r--r-- | vid-webpack-master/cypress/support/steps/fill.network.step.ts | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/vid-webpack-master/cypress/support/steps/fill.network.step.ts b/vid-webpack-master/cypress/support/steps/fill.network.step.ts index c981ac4b2..4ca1796f1 100644 --- a/vid-webpack-master/cypress/support/steps/fill.network.step.ts +++ b/vid-webpack-master/cypress/support/steps/fill.network.step.ts @@ -5,12 +5,15 @@ declare namespace Cypress { } } -function fillNetworkPopup(): Chainable<any> { +function fillNetworkPopup(shouldSelectAdditionalPlatform: boolean = false): Cypress.Chainable<any> { cy.selectDropdownOptionByText('productFamily', 'Emanuel'); cy.selectDropdownOptionByText('lcpRegion', 'hvf6'); cy.selectDropdownOptionByText('tenant', 'AIN Web Tool-15-D-STTest2'); cy.selectDropdownOptionByText('lineOfBusiness', 'zzz1'); - cy.selectDropdownOptionByText('platform', 'xxx1'); + cy.selectPlatformValue('xxx1'); + if(shouldSelectAdditionalPlatform){ + cy.selectPlatformValue('platform'); + } return cy.getElementByDataTestsId('form-set').click({force : true}).then((done)=>{ return done; }); |