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