diff --git a/modules/ing/browser.py b/modules/ing/browser.py index fe2853482f65e3d57f1d218814617a7690c940b4..3f366a6f0005e69232b08d1d03f60ea12a14831a 100644 --- a/modules/ing/browser.py +++ b/modules/ing/browser.py @@ -134,6 +134,7 @@ def do_login(self): raise BrowserIncorrectPassword('Please login on website to fill the form and retry') self.page.check_for_action_needed() + @need_login def set_multispace(self): self.accountspage.go() self.where = "start" @@ -147,6 +148,7 @@ def set_multispace(self): self.current_space = space break + @need_login def change_space(self, space): if self.multispace and not self.is_same_space(space, self.current_space): self.accountspage.go()