keycloak-scim/types/import.d.ts
2021-09-16 12:24:21 +02:00

11 lines
301 B
TypeScript

declare namespace Cypress {
interface Chainable {
/**
* Get one or more DOM elements by `data-testid`.
*
* @example
* cy.getId('searchButton') // Gets the <button data-testid="searchButton">Search</button>
*/
getId(selector: string, ...args): Chainable<any>;
}
}