public string ExtractDestinationFromHtml(string html_document_2)
        {
            if (html_document_2.Contains("Error - VesselFinder"))
            {
                return(null);
            }
            string node = _creator.CreatePrepareAndVerifyRowNodeString(html_document_2);

            return(_stringParser.GetTrimmedDestination(node));
        }