def getQuickTestHandleByName(self, quickTestName): """ Description Get the Quick Test object handle by the name. Parameter quickTestName: The name of the Quick Test. """ for quickTestHandle in self.getAllQuickTestHandles(): response = self.ixnObj.get(self.ixnObj.httpHeader+quickTestHandle) currentQtName = response.json()['name'] if (bool(re.match(quickTestName, currentQtName, re.I))): return quickTestHandle