blob: 29166f67d5c31e7a2c07b6d7344dc0113f798738 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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.selectPlatformValue('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);
|