aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/cypress/support/steps/fill.vnf.popup.step.ts
diff options
context:
space:
mode:
Diffstat (limited to 'vid-webpack-master/cypress/support/steps/fill.vnf.popup.step.ts')
-rw-r--r--vid-webpack-master/cypress/support/steps/fill.vnf.popup.step.ts30
1 files changed, 30 insertions, 0 deletions
diff --git a/vid-webpack-master/cypress/support/steps/fill.vnf.popup.step.ts b/vid-webpack-master/cypress/support/steps/fill.vnf.popup.step.ts
new file mode 100644
index 000000000..a5319b80f
--- /dev/null
+++ b/vid-webpack-master/cypress/support/steps/fill.vnf.popup.step.ts
@@ -0,0 +1,30 @@
+// add new command to the existing Cypress interface
+
+
+declare namespace Cypress {
+ interface Chainable {
+ fillVnfPopup: typeof FillVnfPopup,
+ duplicateVnf: typeof DuplicateVnf,
+ }
+}
+function FillVnfPopup(): 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');
+ return cy.getElementByDataTestsId('form-set').click({force : true}).then((done)=>{
+ return done;
+ });
+}
+function DuplicateVnf( vnfNode: string, amountBefore: number): Chainable<any> {
+ return cy.getElementByDataTestsId(vnfNode).should('have.length', amountBefore)
+ .getElementByDataTestsId(vnfNode+"-menu-btn").click({force:true})
+ .getElementByDataTestsId('context-menu-duplicate').click({force : true})
+ .getTagElementContainsText('button','Duplicate').click({force:true})
+ .getElementByDataTestsId(vnfNode).should('have.length', amountBefore+1).then((done)=>{
+ return done;
+ });
+}
+Cypress.Commands.add('fillVnfPopup', FillVnfPopup);
+Cypress.Commands.add('duplicateVnf', DuplicateVnf);