/// declare namespace Cypress { interface Chainable { /** * Custom command to select DOM element by data-cy attribute. * @example cy.dataCy('greeting') */ dataCy(value: string): Chainable>; /** * Custom command to login user into the app. * @example cy.login('admin', 'password) */ login(username: string, password: string): Chainable>; } }