From bc45857db55c3cfd655b4ab5d9a813f312ee447c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9lande=20Adrien?= Date: Fri, 17 Aug 2018 15:02:08 +0200 Subject: [PATCH] [ing] avoiding external accounts ING now get the accounts user from other banks. We must not scrap them. Just modified the regex so it does not take the 'bloc-comptes-externes' div. Closes: 18658@sibi Closes: 18661@sibi --- modules/ing/pages/accounts_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ing/pages/accounts_list.py b/modules/ing/pages/accounts_list.py index 46a7a9a3d0..8a6126ad19 100644 --- a/modules/ing/pages/accounts_list.py +++ b/modules/ing/pages/accounts_list.py @@ -161,7 +161,7 @@ def get_card_list(self): @method class get_list(ListElement): - item_xpath = '//a[@class="mainclic"]' + item_xpath = '//div[@id="bloc-menu-comptes"]//a[@class="mainclic"]' class item(ItemElement): klass = Account -- GitLab