Aug-18-2020, 04:31 PM
try to replace imports in
from
test_sign_in_page.py
to:from tests.base_test import BaseTest from pages.main_page import MainPageand then you probably will have to use local import because of circular imports -> remove
from pages.main_page import MainPage
from
login_page.py
and import it inside the age_gender_verification
:def age_gender_verification(self): from pages.main_page import MainPageand if I were you I would try to avoid
*
imports