cypress-enterprise-commands
Version:
Reusable Cypress custom commands for enterprise web applications
11 lines (10 loc) • 399 B
TypeScript
declare namespace Cypress {
interface Chainable<Subject> {
logMsg(str: any): Chainable<any>;
getByTestAttribute(el: string): Chainable<any>;
getAllItemsCount(gridSelector: string, itemSelector: string): Chainable<number>;
hideDialogFooter(): Chainable<any>;
displayDialogFooter(): Chainable<any>;
catchUnCaughtException(): Chainable<any>;
}
}