public void testCheckThrottlingCSVDataService() throws Exception {
    ServiceManagement instServiceManagement = new ServiceManagement(browser);

    instServiceManagement.Login();
    instServiceManagement.openServiceDashboard("CSVDataService", "data_service");
    String serviceepr =
        "http://"
            + property.getProperty("host.name")
            + ":"
            + property.getProperty("http.port")
            + property.getProperty("context.root")
            + "/services/"
            + "CSVDataService";
    instServiceManagement.checkThrottling(
        serviceepr, "getAllCustomer", "urn:getAllCustomer", "http://ws.wso2.org/dataservice", "s");
  }