def getResultPath(self): """ The path where the results are saved in the IxLoad gateway server """ url = self.sessionIdUrl+'/ixLoad/test' response = self.get(url) self.resultPath = response.json()['runResultDirFull'] if self.resultPath.startswith('/'): # A Linux path self.resultPath = self.resultPath.replace('\\', '/') else: # A Windows path self.resultPath = self.resultPath.replace('\\', '\\\\') return self.resultPath