4ca1796f16c46e77131510e2ef74b0073e478926
[vid.git] / vid-webpack-master / cypress / support / steps / fill.network.step.ts
1 // add new command to the existing Cypress interface
2 declare namespace Cypress {
3   interface Chainable {
4     fillNetworkPopup: typeof fillNetworkPopup,
5   }
6 }
7
8 function fillNetworkPopup(shouldSelectAdditionalPlatform: boolean = false): Cypress.Chainable<any> {
9   cy.selectDropdownOptionByText('productFamily', 'Emanuel');
10   cy.selectDropdownOptionByText('lcpRegion', 'hvf6');
11   cy.selectDropdownOptionByText('tenant', 'AIN Web Tool-15-D-STTest2');
12   cy.selectDropdownOptionByText('lineOfBusiness', 'zzz1');
13   cy.selectPlatformValue('xxx1');
14   if(shouldSelectAdditionalPlatform){
15     cy.selectPlatformValue('platform');
16   }
17   return cy.getElementByDataTestsId('form-set').click({force : true}).then((done)=>{
18     return done;
19   });
20 }
21
22 Cypress.Commands.add('fillNetworkPopup', fillNetworkPopup);