def runQuickTest(self, quickTestName, timeout=90): """ Description Run the Quick test Parameter quickTestName: : name of the quick test to run timeout: : duration for quick test to run. Default=90 seconds Example runQuickTest("Macro_17_57_14_294", timeout=180) Return Note: operation run will keep checking the status of execution for the specified timeout """ eventSchedulerHandle = self.getQuickTestHandleByName(quickTestName) url = self.ixnObj.sessionUrl + '/quickTest/eventScheduler/operations/run' data = {"arg1": eventSchedulerHandle} response = self.ixnObj.post(url, data=data) self.ixnObj.waitForComplete(response, url + '/' + response.json()['id'], timeout=timeout)