aboutsummaryrefslogtreecommitdiffstats
path: root/python/report_ops
diff options
context:
space:
mode:
Diffstat (limited to 'python/report_ops')
-rw-r--r--python/report_ops/scotia.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/report_ops/scotia.py b/python/report_ops/scotia.py
index 70889351..b0eefa1e 100644
--- a/python/report_ops/scotia.py
+++ b/python/report_ops/scotia.py
@@ -18,7 +18,7 @@ logger = logging.getLogger(__name__)
def download_report(account_username, password, report_dir, workdate):
with create_driver(report_dir) as driver:
login(driver, account_username, password)
- navigate_to_inbox(driver, workdate)
+ navigate_to_msg(driver, workdate)
attachment_element = get_attachment_element(driver)
driver.implicitly_wait(3)
attachment_element.click()
@@ -37,7 +37,7 @@ def login(driver, account_username, password):
login_button.click()
-def navigate_to_inbox(driver, workdate):
+def navigate_to_msg(driver, workdate):
driver.get(
"https://web1.mail.scotiabank.com/webmail/do/FolderDisplay?paths=INBOX&path=INBOX"
)