From 1fdeb0a5db22063f02aea7b94c9a6f6c34bffbd6 Mon Sep 17 00:00:00 2001 From: Vincent Ardisson Date: Mon, 27 Jul 2020 18:18:15 +0200 Subject: [PATCH] [ing] fill iban in API site --- modules/ing/api_browser.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/ing/api_browser.py b/modules/ing/api_browser.py index 520f6bc54d..e307df5ff3 100644 --- a/modules/ing/api_browser.py +++ b/modules/ing/api_browser.py @@ -303,6 +303,8 @@ def get_api_accounts(self): """iter accounts on new website""" self.accounts.stay_or_go() for account in self.page.iter_accounts(): + self.fill_account_iban(account) + # We get life insurance details from the API, not the old website # If the balance is 0, the details page throws an error 500 if account.type == Account.TYPE_LIFE_INSURANCE: -- GitLab