From faea86ad73287d13e1ebd64c122bfd0f1e80ff28 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Tue, 16 Jul 2013 09:52:17 +0200 Subject: [PATCH] support special login URLs on some regions --- modules/cragr/web/browser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/cragr/web/browser.py b/modules/cragr/web/browser.py index 7c168f77..26ca333e 100644 --- a/modules/cragr/web/browser.py +++ b/modules/cragr/web/browser.py @@ -36,6 +36,7 @@ class Cragr(BaseBrowser): PAGES = {'https?://[^/]+/': HomePage, 'https?://[^/]+/stb/entreeBam': LoginPage, + 'https?://[^/]+/stb/entreeBam\?.*typeAuthentification=CLIC_ALLER.*': LoginPage, 'https?://[^/]+/stb/entreeBam\?.*act=Synthcomptes': AccountsPage, 'https?://[^/]+/stb/entreeBam\?.*act=Synthepargnes': SavingsPage, 'https?://[^/]+/stb/.*act=Releves.*': TransactionsPage,