diff --git a/modules/bp/browser.py b/modules/bp/browser.py index c6055cf3d6af3aa787598af7cc5fee5b7b87873a..e075b7c4b6ea998c77be25e7f3002659636d5e21 100644 --- a/modules/bp/browser.py +++ b/modules/bp/browser.py @@ -54,6 +54,7 @@ class BPBrowser(LoginBrowser, StatesMixin): # FIXME beware that '.*' in start of URL() won't match all domains but only under BASEURL + login_image = URL(r'.*wsost/OstBrokerWeb/loginform\?imgid=', UselessPage) login_page = URL(r'.*wsost/OstBrokerWeb/loginform.*', LoginPage) repositionner_chemin_courant = URL(r'.*authentification/repositionnerCheminCourant-identif.ea', repositionnerCheminCourant) init_ident = URL(r'.*authentification/initialiser-identif.ea', Initident) diff --git a/modules/bp/pages/accountlist.py b/modules/bp/pages/accountlist.py index 351bd2aea3f49e6f0f10b46a8446182559fbb5b0..efa58d0568b16495dfb2b596a3aa35a2cd68c40c 100644 --- a/modules/bp/pages/accountlist.py +++ b/modules/bp/pages/accountlist.py @@ -455,7 +455,7 @@ def on_load(self): self.get_form(id='autoSubmit').submit() -class UselessPage(LoggedPage, HTMLPage): +class UselessPage(LoggedPage, RawPage): pass