def test_clusterwise_csv_download(self): csv = ClusterwiseCsv(self.driver, self.year, self.month) result = csv.click_download_icon_of_clusters() if result: print("Cluster wise csv report download is working") csv.remove_csv() else: raise self.failureException("Cluster wise csv report download is not working")
def test_clusterwise_csv_download(self): self.tests.pop() self.logger.info("test_clusterwise_csv_download is running" + " " + "Total :" + " " + str( self.total_tests) + " " + "Remaining :" + " " + str(len(self.tests) - 1)) csv = ClusterwiseCsv(self.driver, self.year, self.month) result = csv.click_download_icon_of_clusters() if result: print("Cluster wise csv report download is working") csv.remove_csv() else: raise self.failureException("Cluster wise csv report download is not working") self.logger.info("test_clusterwise_csv_download is completed...")