def test_clusterwise_csv_download(self): csv = ClusterwiseCsv(self.driver) result = csv.click_download_icon_of_clusters() if result == "File Not Downloaded": raise self.failureException(result) else: print("Cluster wise csv report download is 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) result = csv.click_download_icon_of_clusters() if result == "File Not Downloaded": raise self.failureException(result) self.logger.info("test_clusterwise_csv_download is completed...")
def test_clusterwise_csv_download(self): csv = ClusterwiseCsv(self.driver) result = csv.click_download_icon_of_clusters() if result == "File Not Downloaded": raise self.failureException(result)