Interface ErrorStepWithRepeatOptionsExperimental

interface ErrorStepWithRepeatOptions {
    buttons?: MessageBubbleButtonProps[];
    description?: string;
    errorMsg?: string;
    loaderTitle?: string;
    showLoader?: boolean;
    title?: string;
}

Properties

buttons?: MessageBubbleButtonProps[]

buttons button for retry bubble option, 1st is used for close, 2nd for retry default: [ {value: 'Close', text: 'Close'}, {value: 'Retry', text: 'Retry'}, ]

description?: string

Optional bubble description. Default empty

errorMsg?: string

Error msf, default: Something unexpected happened in the page. Fix the condition, and resume when ready to continue

loaderTitle?: string

Loader title, default: Running automation

showLoader?: boolean

boolean to show loader after retry. Default true

title?: string

Optional bubble title. Default empty