private void SetupErrorPages(WebBrowser webBrowser, string rootUrl, string languageBranch)
        {
            IEnumerable<string> errorPageUrls = GetDescendantPages(
                webBrowser, rootUrl, "[TLB Templates] Custom error page;[Templates] Custom error page", string.IsNullOrWhiteSpace(languageBranch) ? null : languageBranch);

            webBrowser.SetupErrorPagesUrls(errorPageUrls);
        }