示例#1
0
    def __init__(self, path):
        CsvHandling.__init__(self)
        GeneralExceptionHandling.__init__(self)
        self.path = path
        self.locatorValidationArray = dict()

        self.dataFetchingValidationLocatorPath = self.getJsonDataRecurssive(
            'DataFetching,validationLocator', self.path)
        self.dataFetchingFilesPath = self.getJsonDataRecurssive(
            'DataFetching,filesPath', self.path)

        self.sqlConnect = SqlConnect(path)

        self.validationDebug = False
示例#2
0
 def __init__(self, path):
     GeneralExceptionHandling.__init__(self)
     self.path = path
     self.stringMatchConfidence = 90
     self.fuzzySearchOptimumLength = 6
     """ threshold will set to 90 and l_dist will be 0 for precision while less than fuzzySearchOptimumLength """