index.d.ts 280 B

12345678910
  1. declare namespace Cypress {
  2. interface Chainable<Subject = any> {
  3. /**
  4. * Custom command to select DOM element by id attribute.
  5. * @param {string} value - id
  6. * @example cy.getById('title')
  7. */
  8. getById(value: string): Chainable<JQuery<HTMLElement>>;
  9. }
  10. }