Revert "the account information div's id change, so we look for the dom structure"

This reverts commit 12d26a64a9. Because they switch back to old site version
This commit is contained in:
Vincent Paredes 2014-10-06 14:00:49 +02:00 committed by Romain Bignon
commit 1eb96574d0

View file

@ -50,12 +50,12 @@ class HomePage(LoggedPage, HTMLPage):
klass = Account
def condition(self):
return len(self.el.xpath('.//div[@class="catre_col_two"]/h2')) > 0
return len(self.el.xpath('.//div[@class="catre_col_one"]/h2')) > 0
obj_id = CleanText('.//div[@class="carte_col_leftcol"]/p') & Regexp(pattern=r'(\d+)')
obj_label = CleanText('.//div[@class="carte_col_leftcol"]/h2')
obj_balance = Format('-%s', CleanText('.//div/h2')) & CleanDecimal(replace_dots=True)
obj_currency = FrenchTransaction.Currency('.//div/h2')
obj_balance = Format('-%s', CleanText('.//div[@class="catre_col_one"]/h2')) & CleanDecimal(replace_dots=True)
obj_currency = FrenchTransaction.Currency('.//div[@class="catre_col_one"]/h2')
obj__link = Link('.//a[contains(@href, "solde-dernieres-operations")]')