//Scrapes html code for the games page, format it into an xml document ans saves the result in a text file
        public void ScrapeGamesAndSave(string adress, string saveName)
        {
            var scraper = new WebScraping();
            var s = GetWebPageString(adress);

            var listData = scraper.GetHtmlDataGamesCatalog(s);
            var result = BuildResult(listData);
            Save(saveName, result);
        }