summaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/cypress/support/steps/fill.vfModule.step.ts
diff options
context:
space:
mode:
Diffstat (limited to 'vid-webpack-master/cypress/support/steps/fill.vfModule.step.ts')
-rw-r--r--vid-webpack-master/cypress/support/steps/fill.vfModule.step.ts24
1 files changed, 24 insertions, 0 deletions
diff --git a/vid-webpack-master/cypress/support/steps/fill.vfModule.step.ts b/vid-webpack-master/cypress/support/steps/fill.vfModule.step.ts
new file mode 100644
index 000000000..d2977832d
--- /dev/null
+++ b/vid-webpack-master/cypress/support/steps/fill.vfModule.step.ts
@@ -0,0 +1,24 @@
+declare namespace Cypress {
+ interface Chainable {
+ fillVFModulePopup: typeof FillVFModulePopup
+ }
+}
+
+function FillVFModulePopup(vnfName: string, vfModuleName: string, instanceName: string, lcpRegion: string, tenant: string, rollback: boolean, sdncPreLoad: boolean): Chainable<any> {
+ cy.getElementByDataTestsId('node-' + vnfName).click({force: true});
+ cy.getElementByDataTestsId('node-' + vfModuleName + '-add-btn').click({force: true});
+ cy.getElementByDataTestsId('instanceName').last().type(instanceName, {force: true});
+ cy.getElementByDataTestsId('lcpRegion').last().select(lcpRegion);
+ cy.getElementByDataTestsId('tenant').last().select(tenant);
+ cy.getElementByDataTestsId('lcpRegion').last().select(lcpRegion);
+ cy.getElementByDataTestsId('rollback').last().select(String(rollback));
+ if (sdncPreLoad) {
+ cy.getElementByDataTestsId('sdncPreLoad').last().check();
+ }
+ return cy.getElementByDataTestsId('form-set').last().click({force: true}).then((done) => {
+ return done;
+ });
+
+}
+
+Cypress.Commands.add('fillVFModulePopup', FillVFModulePopup);