public static void Setup(TestContext testContext)
        {
            _endpointHost = ConfigurationManager.AppSettings.Get("EndpointHost");
            _endpointIp = ConfigurationManager.AppSettings.Get("EndpointIP");

            var ssllService = new SSLLabsApiService(ConfigurationManager.AppSettings.Get("ApiUrl"));
            _endpoint = ssllService.GetEndpointData(_endpointHost, _endpointIp);
        }