From d6d5d4cebd82228ece889e96dc962e95b2f0cba3 Mon Sep 17 00:00:00 2001 From: Florent Date: Thu, 24 Apr 2014 19:45:28 +0200 Subject: [PATCH] Set obj_id to None before to return it to the browser --- modules/ing/pages/accounts_list.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/ing/pages/accounts_list.py b/modules/ing/pages/accounts_list.py index 9623746e..35fd2424 100644 --- a/modules/ing/pages/accounts_list.py +++ b/modules/ing/pages/accounts_list.py @@ -137,6 +137,7 @@ class AccountsList(LoggedPage, HTMLPage): class item(ItemElement): klass = Transaction + obj_id = None # will be overwrited by the browser # we use lower for compatibility with the old website obj_raw = Transaction.Raw(Lower('.//td[@class="lbl"]')) obj_amount = CleanDecimal('.//td[starts-with(@class, "amount")]')