diff --git a/modules/axabanque/pages.py b/modules/axabanque/pages.py index 9e0f9b13..ce1fa471 100644 --- a/modules/axabanque/pages.py +++ b/modules/axabanque/pages.py @@ -263,6 +263,9 @@ class TransactionsPage(BasePage): #DAT account can't have transaction if self.document.xpath('//table[@id="table-dat"]'): return + #These accounts have investments, no transactions + if self.document.xpath('//table[@id="InfosPortefeuille"]'): + return tables = self.document.xpath('//table[@id="table-detail-operation"]') if len(tables) == 0: tables = self.document.xpath('//table[@id="table-detail"]')