public static List <CountryChartRootObject> GetCountryChartData(IWebDriver browser, IWebElement chart)
        {
            string json = GetDataSourceJSON(browser, chart);

            return(SerializationUtils.ChartDeserializerCountry(json));
        }
        public static List <RandomChartRootObject> GetRandomChartData(IWebDriver browser, IWebElement chart)
        {
            string json = GetDataSourceJSON(browser, chart);

            return(SerializationUtils.ChartDeserializerVerifReport(json));
        }