interface WindowElementDescription {
    className?: string | RegExp;
    expandCollapsedState?: ExpandCollapseState;
    helpText?: string | RegExp;
    id?: string | RegExp;
    isDataValidForForm?: boolean;
    isEnabled?: boolean;
    isFocused?: boolean;
    isKeyboardFocusable?: boolean;
    isReadOnly?: boolean;
    isRequiredForForm?: boolean;
    isVisible?: boolean;
    role?: string;
    selectedText?: string | RegExp;
    title?: string | RegExp;
    type?: string;
    value?: string | RegExp;
}

Properties

className?: string | RegExp
expandCollapsedState?: ExpandCollapseState
helpText?: string | RegExp
id?: string | RegExp
isDataValidForForm?: boolean
isEnabled?: boolean
isFocused?: boolean
isKeyboardFocusable?: boolean
isReadOnly?: boolean
isRequiredForForm?: boolean
isVisible?: boolean
role?: string
selectedText?: string | RegExp
title?: string | RegExp
type?: string
value?: string | RegExp

Generated using TypeDoc