diff --git a/modules/fortuneo/browser.py b/modules/fortuneo/browser.py index 20d7f519190d6e6d64fb44cc331af4ccc1fdc913..f7c5a2589b8fb0505a9e2581ef382feda609a98d 100644 --- a/modules/fortuneo/browser.py +++ b/modules/fortuneo/browser.py @@ -120,7 +120,7 @@ def process_action_needed(self): self.location(self.absurl(url, base=True)) # beware, the landing page might vary according to the referer page. So far I didn't figure out how the landing page is chosen. # if there are skippable CGUs, skip them - if self.page.has_action_needed(): + if self.accounts_page.is_here() and self.page.has_action_needed(): # Look for the request in the event listener registered to the button # can be harcoded, no variable part. It is a POST request without data. self.location(self.absurl('ReloadContext?action=1&', base=True), method='POST')