umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
8 lines (7 loc) • 349 B
TypeScript
import { FormField } from './formField';
export declare class LongAnswerField extends FormField {
alias?: string;
caption?: string;
value?: string;
constructor(id: string, alias?: string, caption?: string, value?: string, containsSensitiveData?: boolean, mandatory?: boolean, requiredErrorMessage?: string, regex?: string);
}