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