public static Task MoveToPageAsync(this IWizard wizard, IWizardPage wizardPage)
        {
            var index = wizard.Pages.ToList().IndexOf(wizardPage);

            if (index < 0)
            {
                return(TaskHelper.Completed);
            }

            return(wizard.MoveToPageAsync(index));
        }