cypress-enterprise-commands
Version:
Reusable Cypress custom commands for enterprise web applications
15 lines (14 loc) • 743 B
TypeScript
declare namespace Cypress {
interface Chainable<Subject> {
verifyDimmidInput(attr: string): Chainable<any>;
verifyDimmidReadOnlyInput(attr: string): Chainable<any>;
verifyNotDimmidInput(attr: string): Chainable<any>;
verifyDimmidItemDropDownList(attr: string): Chainable<any>;
verifyNotExistanceTheRequiredValidation(): Chainable<any>;
verifyDisplayingTheRequiredValidationMsgsCount(cout: number): Chainable<any>;
visibilityOfRequiredStar(fieldSelector: string): Chainable<any>;
checkImageVisibilityBySrc(imgSrc: string): Chainable<any>;
isSwitchedOn(index: number, isSwitchedOn: boolean): Chainable<any>;
verifyAfterSavingBehavior(): Chainable<any>;
}
}