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

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