support TITRE and PEA account types
This commit is contained in:
parent
25cb1f2e08
commit
4531600b45
1 changed files with 5 additions and 1 deletions
|
|
@ -64,6 +64,10 @@ class AccountsList(BasePage):
|
|||
account.id = "LA-" + account.id
|
||||
elif "Orange" in account.label:
|
||||
account.id = "LEO-" + account.id
|
||||
elif "Titres" in account.label:
|
||||
account.id = "TITRE-" + account.id
|
||||
elif "PEA" in account.label:
|
||||
account.id = "PEA-" + account.id
|
||||
jid = self.document.find('//input[@name="javax.faces.ViewState"]')
|
||||
account._jid = jid.attrib['value']
|
||||
yield account
|
||||
|
|
|
|||
Loading…
Reference in a new issue