I\'m trying to implement PageObject pattern for my first Login test. While running it I\'m receiving the following error:
>> py.test -v test_login.py
Your base module is located in the ui module. Hence line:
base
ui
from base import BasePage
should be:
from ui.base import BasePage