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