index.d.ts 254 B

123456789
  1. namespace Cypress {
  2. interface Chainable<Subject = any> {
  3. /**
  4. * Custom command to select DOM element by data-testid attribute.
  5. * @example cy.getTestId('greeting')
  6. */
  7. getTestId(value: string): Chainable<JQuery<HTMLElement>>;
  8. }
  9. }