diff --git a/modules/cragr/api/browser.py b/modules/cragr/api/browser.py index 2f400eb4d3a92e4e6cc56ae2f0ea6ef14218daa4..a2ed7a688c2e000b43f995ba6f4fbdae16755ac2 100644 --- a/modules/cragr/api/browser.py +++ b/modules/cragr/api/browser.py @@ -473,7 +473,7 @@ def iter_investment(self, account): @need_login def iter_advisor(self): - self.contracts_page.go(id_contract=0) + self.go_to_account_space(0) owner_type = self.page.get_owner_type() self.profile_page.go() if owner_type == 'PRIV': @@ -490,7 +490,7 @@ def iter_advisor(self): @need_login def get_profile(self): # There is one profile per space, so we only fetch the first one - self.contracts_page.go(id_contract=0) + self.go_to_account_space(0) owner_type = self.page.get_owner_type() self.profile_page.go() if owner_type == 'PRIV':