Skip to content

Commit

Permalink
QA-5485 added sleep to export to excel functions
Browse files Browse the repository at this point in the history
  • Loading branch information
kbo001 committed Jan 12, 2024
1 parent 70af018 commit 7204a82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,8 @@ def export_form_comp_time_to_excel(self):
print(list_col)
self.wait_to_click(self.export_to_excel)
print("Export to excel successful")
print("sleeping for sometime for the download to complete")
time.sleep(15)
return list_col

def compare_fct_with_email(self, web_data):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,8 @@ def export_sub_by_form_to_excel(self):
print(list_col)
self.wait_to_click(self.export_to_excel)
print("Export to excel successful")
print("sleeping for sometime for the download to complete")
time.sleep(15)
return list_col

def compare_sbf_with_email(self, web_data):
Expand Down

0 comments on commit 7204a82

Please sign in to comment.