blob: b2b48b26854bd08d8dc16f232672f6520687a52b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
declare namespace Cypress {
interface Chainable {
drawingBoardPressAddButtonByElementName: typeof drawingBoardPressAddButtonByElementName,
drawingBoardNumberOfExistingElementsShouldContains: typeof drawingBoardNumberOfExistingElementsShouldContains
}
}
function drawingBoardPressAddButtonByElementName(elementName : string) : Chainable<any> {
return cy.getElementByDataTestsId(elementName + '-add-btn');
}
function drawingBoardNumberOfExistingElementsShouldContains(expectedElements : number) : void {
cy.getElementByDataTestsId('numberButton').contains(expectedElements);
}
Cypress.Commands.add('drawingBoardPressAddButtonByElementName', drawingBoardPressAddButtonByElementName);
Cypress.Commands.add('drawingBoardNumberOfExistingElementsShouldContains', drawingBoardNumberOfExistingElementsShouldContains);
|