private string FindBackofficeLoginUrl()
        {
            var response = _requestHandler.ExecuteGet(_viewState.Backoffice.SetupPageUrl);

            return(Regex.Match(response, @">(\S+)/home.action").Groups[1].Value);
        }